Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
clayne11 committed Sep 18, 2024
1 parent aa0c50b commit 533d516
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugin/federation/federation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func TestNew(t *testing.T) {
CallArgumentDirectivesWithNull: true,
}
plugin, err := New(1, cfg)
assert.Error(t, err)
require.Error(t, err)
assert.Nil(t, plugin)
})

Expand All @@ -66,7 +66,7 @@ func TestNew(t *testing.T) {
CallArgumentDirectivesWithNull: false,
}
plugin, err := New(1, cfg)
assert.Error(t, err)
require.Error(t, err)
assert.Nil(t, plugin)
})

Expand All @@ -82,7 +82,7 @@ func TestNew(t *testing.T) {
}

plugin, err := New(1, cfg)
assert.Error(t, err)
require.Error(t, err)
assert.Nil(t, plugin)
})
}
Expand Down

0 comments on commit 533d516

Please sign in to comment.