We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05e5029 commit 821db67Copy full SHA for 821db67
1 file changed
modules/openapi-generator/src/test/java/org/openapitools/codegen/scala/ScalaSttpCirceCodegenTest.java
@@ -156,6 +156,7 @@ public void verifyContainerWrappedRefPreventsInlining() throws IOException {
156
// Animal is a regular trait (not sealed) because not all children can be inlined
157
Path animalPath = Paths.get(outputPath + "/src/main/scala/org/openapitools/client/model/Animal.scala");
158
assertFileContains(animalPath, "trait Animal");
159
+ assertFileNotContains(animalPath, "sealed trait Animal");
160
assertFileNotContains(animalPath, "case class Cat");
161
assertFileNotContains(animalPath, "case class Dog");
162
0 commit comments