Skip to content

Commit

Permalink
adding assert to test for MID-6008
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Mar 20, 2020
1 parent eea6f21 commit 81dae87
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -337,6 +337,10 @@ public void test021AddAssignmentModifyAccountAssignment() throws Exception {
assertNoMinusAttributeValues(plusAccountConstruction,
getDummyResourceController().getAttributeQName(DummyResourceContoller.DUMMY_ACCOUNT_ATTRIBUTE_WEAPON_NAME));

assertTrue("Old legal variable for projection context is not true", accContext.isLegalOld());
assertTrue("Legal variable for projection context is not true", accContext.isLegal());
assertTrue("Old assigned variable for projection context is not true", accContext.isAssignedOld());
assertTrue("Assigned variable for projection context is not true", accContext.isAssigned());
}

@Test
Expand Down

0 comments on commit 81dae87

Please sign in to comment.