Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbrowndotje committed Aug 26, 2023
1 parent 1af4ce1 commit e9fe513
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/com/structurizr/dsl/DslTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ void test_extendWorkspaceFromJsonUrl() throws Exception {
assertEquals(1, model.getPeople().size());
Person user = model.getPersonWithName("User");

assertEquals(1, workspace.getModel().getSoftwareSystems().size());
assertEquals(2, workspace.getModel().getSoftwareSystems().size());
SoftwareSystem softwareSystem = model.getSoftwareSystemWithName("Software System 1");

assertEquals(2, softwareSystem.getContainers().size());
Expand Down Expand Up @@ -536,7 +536,7 @@ void test_extendWorkspaceFromDslUrl() throws Exception {
assertEquals(1, model.getPeople().size());
Person user = model.getPersonWithName("User");

assertEquals(1, workspace.getModel().getSoftwareSystems().size());
assertEquals(2, workspace.getModel().getSoftwareSystems().size());
SoftwareSystem softwareSystem = model.getSoftwareSystemWithName("Software System 1");

assertEquals(1, softwareSystem.getContainers().size());
Expand Down

0 comments on commit e9fe513

Please sign in to comment.