Skip to content

Commit 23d33c2

Browse files
committed
fix tests
1 parent b43648e commit 23d33c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android-sdk/src/test/java/com/optimizely/ab/android/sdk/cmab/DefaultCmabClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,6 @@ public void testRetryOnFailureWithRetryBackoff() throws Exception {
151151
// Verify the retry configuration matches our constants
152152
verify(mockClient).execute(any(Client.Request.class), eq(DefaultCmabClient.REQUEST_BACKOFF_TIMEOUT), eq(DefaultCmabClient.REQUEST_RETRIES_POWER));
153153
assertEquals("REQUEST_BACKOFF_TIMEOUT should be 1", 1, DefaultCmabClient.REQUEST_BACKOFF_TIMEOUT);
154-
assertEquals("REQUEST_RETRIES_POWER should be 2", 2, DefaultCmabClient.REQUEST_RETRIES_POWER);
154+
assertEquals("REQUEST_RETRIES_POWER should be 1", 1, DefaultCmabClient.REQUEST_RETRIES_POWER);
155155
}
156156
}

0 commit comments

Comments
 (0)