Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mgyucht committed Feb 1, 2024
1 parent 106877f commit 4f42a7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions storage/mounts_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -342,14 +342,14 @@ func TestMountCRD(t *testing.T) {
})
diags := r.CreateContext(ctx, d, client)
assert.True(t, diags.HasError())
assert.Equal(t, diags[0].Summary, "failed to get mouting cluster: nope")
assert.Equal(t, "failed to get mouting cluster: nope", diags[0].Summary)

diags = r.ReadContext(ctx, d, client)
assert.True(t, diags.HasError())
assert.Equal(t, diags[0].Summary, "failed to get mouting cluster: nope")
assert.Equal(t, "failed to get mouting cluster: nope", diags[0].Summary)

diags = r.DeleteContext(ctx, d, client)
assert.True(t, diags.HasError())
assert.Equal(t, diags[0].Summary, "failed to get mouting cluster: nope")
assert.Equal(t, "failed to get mouting cluster: nope", diags[0].Summary)
})
}

0 comments on commit 4f42a7b

Please sign in to comment.