test: correct validation test error message

This commit is contained in:
Roman Bednar 2023-05-19 13:16:12 +02:00
parent 42722ffef0
commit 97a81a59f6

View File

@ -2736,7 +2736,7 @@ func TestValidationOptionsForPersistentVolumeClaim(t *testing.T) {
opts := ValidationOptionsForPersistentVolumeClaim(nil, tc.oldPvc)
if opts != tc.expectValidationOpts {
t.Errorf("Expected opts: %+v, received: %+v", opts, tc.expectValidationOpts)
t.Errorf("Expected opts: %+v, received: %+v", tc.expectValidationOpts, opts)
}
})
}