Skip to content

Commit

Permalink
Fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbrowndotje committed Dec 11, 2023
1 parent c99d42e commit 8a7da17
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ void construction_WhenTwoParametersAreSpecified() throws Exception {
assertEquals("structurizr-java", encryptedWorkspace.getLastModifiedAgent());
assertEquals(1234, encryptedWorkspace.getId());
assertEquals("user@domain.com", encryptedWorkspace.getConfiguration().getUsers().iterator().next().getUsername());
assertNull(workspace.getConfiguration());
assertNotNull(workspace.getConfiguration());
assertTrue(workspace.getConfiguration().getUsers().isEmpty());

assertSame(workspace, encryptedWorkspace.getWorkspace());
assertSame(encryptionStrategy, encryptedWorkspace.getEncryptionStrategy());
Expand Down

0 comments on commit 8a7da17

Please sign in to comment.