Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekSi committed Dec 11, 2023
1 parent 617d051 commit b8832f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/envtool/tests_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ func TestShardTestFuncs(t *testing.T) {
testFuncs, err := listTestFuncs(filepath.Join("..", "..", "integration"))
require.NoError(t, err)
assert.Contains(t, testFuncs, "TestQueryCompatLimit")
assert.Contains(t, testFuncs, "TestGetMoreCommand")
assert.Contains(t, testFuncs, "TestCursorsGetMoreCommand")

t.Run("InvalidIndex", func(t *testing.T) {
t.Parallel()
Expand Down
2 changes: 1 addition & 1 deletion integration/cursors/tailable_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func TestCursorsTailable(t *testing.T) {
Code: 2,
Name: "BadValue",
Message: "error processing query: " +
"ns=TestTailable-NonCapped.TestTailable-NonCappedTree: $and\nSort: {}\nProj: {}\n " +
"ns=TestCursorsTailable-NonCapped.TestCursorsTailable-NonCappedTree: $and\nSort: {}\nProj: {}\n " +
"tailable cursor requested on non capped collection",
}
integration.AssertEqualAltCommandError(t, expected, "tailable cursor requested on non capped collection", err)
Expand Down

0 comments on commit b8832f7

Please sign in to comment.