Skip to content

Commit

Permalink
Swap another actual/expected to the correct order
Browse files Browse the repository at this point in the history
  • Loading branch information
SpencerKwok authored Jul 12, 2024
1 parent d30a156 commit 97efcc6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public void testExtensionSchemaValidation(String inputDir, boolean isValid, Stri
ExtensionSchemaValidationCmdLineApp.parseAndValidateExtensionSchemas(resolverPath, new File(inputPath));
SoftAssert softAssert = new SoftAssert();
softAssert.assertTrue(isValid);
softAssert.assertEquals(null, errorMessage);
softAssert.assertEquals(errorMessage, null);
softAssert.assertAll();
}
catch (Exception e)
Expand Down

0 comments on commit 97efcc6

Please sign in to comment.