Skip to content

Commit

Permalink
tests: fix test
Browse files Browse the repository at this point in the history
Refs: 1674

Signed-off-by: JCHacking <[email protected]>
  • Loading branch information
JCHacking committed Jun 18, 2024
1 parent 22e3207 commit df322b4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,9 @@ public void uploadBomAutoCreateWithTagsTest() throws Exception {
Assert.assertTrue(UuidUtil.isValidUUID(json.getString("token")));
Project project = qm.getProject("Acme Example", "1.0");
Assert.assertNotNull(project);
Assert.assertEquals(tags, project.getTags());
assertThat(project.getTags())
.extracting(Tag::getName)
.containsExactlyInAnyOrder("tag1", "tag2");
}

@Test
Expand Down

0 comments on commit df322b4

Please sign in to comment.