diff options
| author | Stefan Majewsky <majewsky@gmx.net> | 2024-07-01 13:15:00 +0200 |
|---|---|---|
| committer | Stefan Majewsky <majewsky@gmx.net> | 2024-07-01 13:17:16 +0200 |
| commit | 3c489c0e29486ce1a5900c4ff87f403ebbbb70fa (patch) | |
| tree | d2db245860b4ae0d5c319aaba4f3aa3cb126808c /tests/container_test.go | |
| parent | 0fe0d65e49adf10a6a92a0412a2ec32e3d036b84 (diff) | |
| download | go-schwift-3c489c0e29486ce1a5900c4ff87f403ebbbb70fa.tar.gz | |
fix autofixable lints
Diffstat (limited to 'tests/container_test.go')
| -rw-r--r-- | tests/container_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/container_test.go b/tests/container_test.go index 26dcaac..da05506 100644 --- a/tests/container_test.go +++ b/tests/container_test.go @@ -45,8 +45,8 @@ func TestContainerLifecycle(t *testing.T) { expectBool(t, schwift.Is(err, http.StatusNotFound), true) expectBool(t, schwift.Is(err, http.StatusNoContent), false) - //DELETE should be idempotent and not return success on non-existence, but - //OpenStack LOVES to be inconsistent with everything (including, notably, itself) + // DELETE should be idempotent and not return success on non-existence, but + // OpenStack LOVES to be inconsistent with everything (including, notably, itself) err = c.Delete(nil) expectError(t, err, fmt.Sprintf("could not DELETE %q in Swift: expected 204 response, got 404 instead: <html><h1>Not Found</h1><p>The resource could not be found.</p></html>", containerName)) |
