Skip to content

Commit

Permalink
reverted sleep duration to 120s (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilsinhaparseable authored Jun 6, 2024
1 parent 50a363d commit af9c639
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions quest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ func TestSmokeLoadWithK6Stream(t *testing.T) {
cmd.Run()
cmd.Output()
}
time.Sleep(300 * time.Second)
time.Sleep(120 * time.Second)
QueryLogStreamCount(t, NewGlob.QueryClient, NewGlob.Stream, 20000)
AssertStreamSchema(t, NewGlob.QueryClient, NewGlob.Stream, SchemaBody)
DeleteStream(t, NewGlob.QueryClient, NewGlob.Stream)
Expand Down Expand Up @@ -288,7 +288,7 @@ func TestSmokeLoad_TimePartition_WithK6Stream(t *testing.T) {
cmd.Run()
cmd.Output()
}
time.Sleep(300 * time.Second)
time.Sleep(120 * time.Second)
QueryLogStreamCount_Historical(t, NewGlob.QueryClient, time_partition_stream, 20000)
DeleteStream(t, NewGlob.QueryClient, time_partition_stream)
}
Expand Down Expand Up @@ -320,7 +320,7 @@ func TestSmokeLoad_CustomPartition_WithK6Stream(t *testing.T) {
cmd.Run()
cmd.Output()
}
time.Sleep(300 * time.Second)
time.Sleep(120 * time.Second)
QueryLogStreamCount(t, NewGlob.QueryClient, custom_partition_stream, 20000)
DeleteStream(t, NewGlob.QueryClient, custom_partition_stream)
}
Expand Down Expand Up @@ -352,7 +352,7 @@ func TestSmokeLoad_TimeAndCustomPartition_WithK6Stream(t *testing.T) {
cmd.Run()
cmd.Output()
}
time.Sleep(300 * time.Second)
time.Sleep(120 * time.Second)
QueryLogStreamCount_Historical(t, NewGlob.QueryClient, custom_partition_stream, 20000)
DeleteStream(t, NewGlob.QueryClient, custom_partition_stream)
}
Expand Down

0 comments on commit af9c639

Please sign in to comment.