Skip to content

Commit 9c64fd5

Browse files
committed
Fix order
1 parent 54b4576 commit 9c64fd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codersdk/users_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func TestUsers(t *testing.T) {
2222
var cerr *codersdk.Error
2323
require.ErrorAs(t, err, &cerr)
2424
require.Equal(t, cerr.StatusCode(), http.StatusConflict)
25-
require.Greater(t, 0, len(cerr.Error()))
25+
require.Greater(t, len(cerr.Error()), 0)
2626
})
2727

2828
t.Run("Get", func(t *testing.T) {

0 commit comments

Comments
 (0)