File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
core/src/test/java/org/openapitools/openapidiff/core/output Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 44
55import java .io .ByteArrayOutputStream ;
66import java .io .OutputStreamWriter ;
7- import org .assertj .core .api .Assertions ;
87import org .junit .jupiter .api .Test ;
98import org .openapitools .openapidiff .core .OpenApiCompare ;
109import org .openapitools .openapidiff .core .model .ChangedOpenApi ;
@@ -88,8 +87,8 @@ void renderShowsNoDifferencesWhenCSVMediaTypeResponseExampleIsByteArray() {
8887 "issue-828-binary-example-for-csv-media-type.yaml" ,
8988 "issue-828-binary-example-for-csv-media-type.yaml" );
9089 render .render (diff , outputStreamWriter );
91- Assertions . assertThat (outputStream .toString ()).isNotBlank ();
92- Assertions . assertThat (outputStream .toString ())
90+ assertThat (outputStream .toString ()).isNotBlank ();
91+ assertThat (outputStream .toString ())
9392 .hasToString ("No differences. Specifications are equivalents" );
9493 }
9594}
You can’t perform that action at this time.
0 commit comments