From 9206bf2cd4111eba61c1d9139f47028c38f7bb53 Mon Sep 17 00:00:00 2001 From: Toby Hsieh Date: Fri, 20 Sep 2024 23:06:43 -0700 Subject: [PATCH] [DNM] Test failure to check GitHub workflow --- .../github/tobyhs/redisflagd/FlagSyncServiceIntegrationTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/kotlin/io/github/tobyhs/redisflagd/FlagSyncServiceIntegrationTest.kt b/src/test/kotlin/io/github/tobyhs/redisflagd/FlagSyncServiceIntegrationTest.kt index 62f787d..6966227 100644 --- a/src/test/kotlin/io/github/tobyhs/redisflagd/FlagSyncServiceIntegrationTest.kt +++ b/src/test/kotlin/io/github/tobyhs/redisflagd/FlagSyncServiceIntegrationTest.kt @@ -65,7 +65,7 @@ class FlagSyncServiceIntegrationTest : TestPropertyProvider, DescribeSpec({ describe("fetchAllFlags") { it("returns all flags") { val response = serviceStub.fetchAllFlags(FetchAllFlagsRequest.newBuilder().build()) - response.flagConfiguration.shouldEqualJson("""{"flags": {"flag1": ${flag1Value}}}""") + response.flagConfiguration.shouldEqualJson("""{"flags": {"flag0": ${flag1Value}}}""") } } }) {