From fcd0837c52f9d97d7f4ca4798fc6858efe3b7a36 Mon Sep 17 00:00:00 2001 From: Peter Streef Date: Mon, 15 Jul 2024 17:04:02 +0200 Subject: [PATCH] fix test --- .../io/moderne/organizations/OrganizationDataFetcherTest.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/test/java/io/moderne/organizations/OrganizationDataFetcherTest.java b/src/test/java/io/moderne/organizations/OrganizationDataFetcherTest.java index a69998c..83c1d65 100644 --- a/src/test/java/io/moderne/organizations/OrganizationDataFetcherTest.java +++ b/src/test/java/io/moderne/organizations/OrganizationDataFetcherTest.java @@ -48,6 +48,10 @@ void organizationsStructure() { assertThat(next.getId()).isEqualTo("Netflix"); assertThat(next.getParent().getId()).isEqualTo("Open source"); }) + .assertNext(next -> { + assertThat(next.getId()).isEqualTo("Bitbucket"); + assertThat(next.getParent().getId()).isEqualTo("OpenRewrite"); + }) .verifyComplete(); } }