Skip to content
Snippets Groups Projects
Commit 054c2c94 authored by ko_oler's avatar ko_oler
Browse files

fix linter

parent 73e086d8
No related branches found
No related tags found
No related merge requests found
...@@ -186,7 +186,7 @@ func TestFilterHandler(t *testing.T) { ...@@ -186,7 +186,7 @@ func TestFilterHandler(t *testing.T) {
t.Run("Build Query", func(t *testing.T) { t.Run("Build Query", func(t *testing.T) {
t.Run("No Filters", func(t *testing.T) { t.Run("No Filters", func(t *testing.T) {
res := h.Query() res := h.Query()
require.IsType(t, res, bson.M{}) require.IsType(t, bson.M{}, res)
pres := ph.Query() pres := ph.Query()
assert.Equal(t, res, pres, "пустой запрос с префиксом и без должны быть одинаковые") assert.Equal(t, res, pres, "пустой запрос с префиксом и без должны быть одинаковые")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment