Skip to content

Commit 9adfda5

Browse files
committed
chore: fix error
1 parent c7d832f commit 9adfda5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

knock/tenants_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ func TestTenants_Set(t *testing.T) {
3636

3737
out := `{"__typename":"Tenant","created_at":null,"id":"cool-tenant2","properties":{"name":"cool-tenant-1"},"settings":{"branding":{"primary_color":"#FFFFFF"}},"updated_at":"2022-05-26T13:59:20.701Z"}`
3838

39-
_, err := w.Write([]byte(out))
40-
c.Assert(err, qt.IsNil)
39+
_, err_w := w.Write([]byte(out))
40+
c.Assert(err_w, qt.IsNil)
4141
}))
4242

4343
client, err := NewClient(WithBaseURL(ts.URL))

0 commit comments

Comments
 (0)