Skip to content

Commit

Permalink
fixed flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
harshil-goel committed Oct 4, 2024
1 parent 22b4917 commit 4842568
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ee/acl/acl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1394,7 +1394,7 @@ func (asuite *AclTestSuite) TestValQueryWithACLPermissions() {
n as name
a as age
}
q2(func: eq(val(n), "RandomGuy")) {
q2(func: eq(val(n), "RandomGuy"), orderasc: val(n)) {
val(n)
val(a)
}
Expand Down Expand Up @@ -1433,7 +1433,7 @@ func (asuite *AclTestSuite) TestValQueryWithACLPermissions() {
n as name
a as age
}
q2(func: uid(f), orderdesc: val(a)) {
q2(func: uid(f), orderasc: val(n)) {
name
val(n)
val(a)
Expand Down

0 comments on commit 4842568

Please sign in to comment.