Skip to content

Commit cf7d3d6

Browse files
committed
Prevent running long test outside of evergreen
Change-Id: Idffb38dd0d055821f709d9753151d81b1b7e95c8
1 parent e131124 commit cf7d3d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mongo/collection_internal_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ func TestCollection_InsertMany_Batches(t *testing.T) {
197197

198198
// TODO(GODRIVER-425): remove this as part a larger project to
199199
// refactor integration and other longrunning tasks.
200-
if os.Getenv("EVR_TASK_ID") != "" {
200+
if os.Getenv("EVR_TASK_ID") == "" {
201201
t.Skip("skipping long running integration test outside of evergreen")
202202
}
203203

0 commit comments

Comments
 (0)