client/plugin: use gotest.tools-style asserts

Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
This commit is contained in:
Paweł Gronowski
2025-05-16 19:14:42 +02:00
parent 832efcd672
commit 44f30261da
7 changed files with 9 additions and 27 deletions

View File

@@ -51,7 +51,5 @@ func TestPluginDisable(t *testing.T) {
}
err := client.PluginDisable(context.Background(), "plugin_name", types.PluginDisableOptions{})
if err != nil {
t.Fatal(err)
}
assert.NilError(t, err)
}