Skip to content

Commit 8f880ed

Browse files
GODRIVER-3445 Clean up comments
1 parent 866ac07 commit 8f880ed

File tree

3 files changed

+109
-74
lines changed

3 files changed

+109
-74
lines changed

internal/integration/unified/unified_spec_test.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ import (
1515
)
1616

1717
var (
18+
// TODO(GODRIVER-3526): This variable can be removed once we determine why
19+
// transaction-heavy unified spec tests are failing in the unified spec
20+
// runner.
1821
nonGitSubmodulePassDirectories = []string{
1922
"unified-test-format/valid-pass",
2023
"transactions/unified",
@@ -59,6 +62,9 @@ func TestUnifiedSpec(t *testing.T) {
5962
})
6063
}
6164

65+
// TODO(GODRIVER-3526): This block can be removed once we determine why
66+
// transaction-heavy unified spec tests are failing in the unified spec
67+
// runner.
6268
for _, testDir := range nonGitSubmodulePassDirectories {
6369
t.Run(testDir, func(t *testing.T) {
6470
runTestDirectory(t, path.Join(dataDirectory, testDir), false)

internal/integration/unified_spec_test.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,9 @@ var directories = []string{
162162
"read-write-concern/tests/operation",
163163
}
164164

165+
// TODO(GODRIVER-3526): This variable can be removed once we determine why
166+
// transaction-heavy unified spec tests are failing in the unified spec
167+
// runner.
165168
var nonGitSubmodulePassDirectories = []string{
166169
"convenient-transactions",
167170
}
@@ -187,6 +190,9 @@ func TestUnifiedSpecs(t *testing.T) {
187190
})
188191
}
189192

193+
// TODO(GODRIVER-3526): This block can be removed once we determine why
194+
// transaction-heavy unified spec tests are failing in the unified spec
195+
// runner.
190196
for _, specDir := range nonGitSubmodulePassDirectories {
191197
t.Run(specDir, func(t *testing.T) {
192198
for _, fileName := range jsonFilesInDir(t, path.Join(dataPath, specDir)) {

0 commit comments

Comments
 (0)