File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
modules/openapi-generator/src/test/java/org/openapitools/codegen/typescript Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -163,9 +163,6 @@ public void givenTypeMappingContainsGenericAndMappedTypeIsUtilityTypeThenTypeIsN
163163 File apiFile = new File (noRuntimePath , "/apis/DefaultApi.ts" );
164164 String apiFileContent = Files .readString (apiFile .toPath ());
165165
166- //TODO Delete
167- System .out .println ("User File: " + userModelContent );
168- System .out .println ("Api File: " + apiFileContent );
169166 TypescriptFileAssert .assertThat (apiFileContent )
170167 .importsNotContain ("UserSummary" )
171168 .assertClass ("DefaultApi" )
@@ -183,8 +180,6 @@ public void givenTypeMappingContainsGenericAndMappedTypeIsUtilityTypeThenTypeIsN
183180 File axiosApiFile = new File (axiosOutputPath , "/api.ts" );
184181 String axiosApiFileContent = Files .readString (axiosApiFile .toPath ());
185182
186- //TODO Delete
187- System .out .println ("Axios Api File: " + axiosApiFileContent );
188183 //Parser check fails for some reason, resorting to regular check
189184 TestUtils .assertFileContains (axiosApiFile .toPath (), "AxiosPromise<Pick<User, \" email\" >>" );
190185 TestUtils .assertFileNotContains (axiosApiFile .toPath (), "AxiosPromise<UserSummary>" );
You can’t perform that action at this time.
0 commit comments