Skip to content

Commit

Permalink
Swap actual/expect values 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 8ad9e8d commit 97212ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void testExtensionSchemaValidation(String inputDir, boolean isValid, Stri
{
SoftAssert softAssert = new SoftAssert();
softAssert.assertTrue(!isValid);
softAssert.assertEquals(e.getMessage(), errorMessage);
softAssert.assertEquals(errorMessage, e.getMessage());
softAssert.assertAll();
}
}
Expand Down

0 comments on commit 97212ee

Please sign in to comment.