File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
java-compiler-testing/src/main/java Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ class ExampleTest {
186186 .isSuccessfulWithoutWarnings();
187187
188188 assertThatCompilation(compilation)
189- .classOutput() . packages ()
189+ .classOutputPackages ()
190190 .fileExists(" com/example/Message.class" )
191191 .isNotEmptyFile();
192192 }
@@ -238,7 +238,7 @@ class JsonSchemaAnnotationProcessorTest {
238238 );
239239
240240 assertThatCompilation(compilation)
241- .classOutputs() . packages ()
241+ .classOutputPackages ()
242242 .fileExists(" json-schemas" , " UserSchema.json" ). contents()
243243 .isNotEmpty()
244244 .satisfies(contents - > JSONAssert . assertEquals(... ));
@@ -308,7 +308,7 @@ class ExampleTest {
308308 .isSuccessfulWithoutWarnings();
309309
310310 assertThatCompilation(compilation)
311- .classOutput() . packages ()
311+ .classOutputPackages ()
312312 .fileExists(" com/example/Message.class" )
313313 .isNotEmptyFile();
314314 }
Original file line number Diff line number Diff line change 8888 * );
8989 *
9090 * assertThatCompilation(compilation)
91- * .classOutputs().packages ()
91+ * .classOutputPackages ()
9292 * .fileExists("json-schemas", "UserSchema.json").contents()
9393 * .isNotEmpty()
9494 * .satisfies(contents -> JSONAssert.assertEquals(...));
You can’t perform that action at this time.
0 commit comments