Skip to content

Commit

Permalink
fix CI errors on recent merge
Browse files Browse the repository at this point in the history
  • Loading branch information
vroldanbet committed Oct 14, 2024
1 parent 2f3cf77 commit 43afc28
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions internal/services/integrationtesting/benchmark_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func BenchmarkServices(b *testing.B) {
Namespace: "example/user",
ObjectId: "tom",
Relation: tuple.Ellipsis,
}, revision, nil, 0)
}, revision, nil, 0, nil)
require.GreaterOrEqual(b, len(results), 0)
return err
},
Expand All @@ -61,7 +61,7 @@ func BenchmarkServices(b *testing.B) {
Namespace: "srrr/user",
ObjectId: "someguy",
Relation: tuple.Ellipsis,
}, revision, nil, 0)
}, revision, nil, 0, nil)
require.GreaterOrEqual(b, len(results), 0)
return err
},
Expand All @@ -77,7 +77,7 @@ func BenchmarkServices(b *testing.B) {
Namespace: "user",
ObjectId: "tom",
Relation: tuple.Ellipsis,
}, revision, nil, 0)
}, revision, nil, 0, nil)
require.GreaterOrEqual(b, len(results), 0)
return err
},
Expand All @@ -93,7 +93,7 @@ func BenchmarkServices(b *testing.B) {
Namespace: "user",
ObjectId: "tom",
Relation: tuple.Ellipsis,
}, revision, nil, 0)
}, revision, nil, 0, nil)
require.Equal(b, len(results), 499)
return err
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ schema: |+
definition user {}
definition container {
relation access: user with unexpired
relation access: user with unexpired
permission accesses = access
}
Expand Down

0 comments on commit 43afc28

Please sign in to comment.