Skip to content

Commit

Permalink
Fix root test
Browse files Browse the repository at this point in the history
  • Loading branch information
atburke committed Jun 11, 2024
1 parent 442e8ca commit f484777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/hostuser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ func TestRootHostUsers(t *testing.T) {
Groups: tc.secondGroups,
Mode: types.CreateHostUserMode_HOST_USER_MODE_KEEP,
})
require.True(t, trace.IsAlreadyExists(err), "want already exists err, got: %v", err)
require.NoError(t, err)
u, err = user.Lookup(testuser)
require.NoError(t, err)
requireUserInGroups(t, u, tc.secondGroups)
Expand Down

0 comments on commit f484777

Please sign in to comment.