aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Michael Lehenbauer <mikelehen@gmail.com>2018-03-20 17:42:02 -0700
committerGravatar GitHub <noreply@github.com>2018-03-20 17:42:02 -0700
commitd924771453d000e708bd5d239da3bae4feb489ac (patch)
tree587ad76b2b64a1b2b259e909281b3e36be97e6dd
parent87e511d52ad400e0a44a60c62325b2fd213930a3 (diff)
Fix FSTTimerID strings in spec tests to match constants used in web. (#953)
-rw-r--r--Firestore/Example/Tests/SpecTests/FSTSpecTests.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Firestore/Example/Tests/SpecTests/FSTSpecTests.mm b/Firestore/Example/Tests/SpecTests/FSTSpecTests.mm
index 10aa6c2..1e16250 100644
--- a/Firestore/Example/Tests/SpecTests/FSTSpecTests.mm
+++ b/Firestore/Example/Tests/SpecTests/FSTSpecTests.mm
@@ -335,11 +335,11 @@ static NSString *const kNoIOSTag = @"no-ios";
timerID = FSTTimerIDAll;
} else if ([timer isEqualToString:@"listen_stream_idle"]) {
timerID = FSTTimerIDListenStreamIdle;
- } else if ([timer isEqualToString:@"listen_stream_connection"]) {
+ } else if ([timer isEqualToString:@"listen_stream_connection_backoff"]) {
timerID = FSTTimerIDListenStreamConnectionBackoff;
} else if ([timer isEqualToString:@"write_stream_idle"]) {
timerID = FSTTimerIDWriteStreamIdle;
- } else if ([timer isEqualToString:@"write_stream_connection"]) {
+ } else if ([timer isEqualToString:@"write_stream_connection_backoff"]) {
timerID = FSTTimerIDWriteStreamConnectionBackoff;
} else if ([timer isEqualToString:@"online_state_timeout"]) {
timerID = FSTTimerIDOnlineStateTimeout;