Skip to content

Commit 9861755

Browse files
committed
remove task delays
1 parent a93c9a2 commit 9861755

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/Splitio.Tests.Common/BaseAsyncClientTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,7 @@ public async Task TrackAsync_WithValidData_ReturnsTrue()
10011001
}
10021002

10031003
//Validate Events sent to the be.
1004-
await Task.Delay(1000);
1004+
// await Task.Delay(1000);
10051005
AssertSentEvents(events);
10061006
await client.DestroyAsync();
10071007
}
@@ -1043,7 +1043,7 @@ public async Task TrackAsync_WithBUR_ReturnsTrue()
10431043
}
10441044

10451045
//Validate Events sent to the be.
1046-
await Task.Delay(1000);
1046+
// await Task.Delay(1000);
10471047
AssertSentEvents(events);
10481048
await client.DestroyAsync();
10491049
}
@@ -1093,7 +1093,7 @@ public async Task TrackAsync_WithInvalidData_ReturnsFalse()
10931093
.ToList();
10941094

10951095
//Validate Events sent to the be.
1096-
await Task.Delay(1000);
1096+
// await Task.Delay(1000);
10971097
AssertSentEvents(events);
10981098
await client.DestroyAsync();
10991099
}
@@ -1138,7 +1138,7 @@ public async Task TrackAsync_WithLowQueue_ReturnsTrue()
11381138
}
11391139

11401140
//Validate Events sent to the be.
1141-
await Task.Delay(1000);
1141+
// await Task.Delay(1000);
11421142
AssertSentEvents(events, eventsCount: 3, validateEvents: false);
11431143
await client.DestroyAsync();
11441144
}

0 commit comments

Comments
 (0)