Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
absolutelightning committed Sep 26, 2023
1 parent b7aa37e commit 89ed772
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agent/consul/state/catalog_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2178,7 +2178,7 @@ func TestStateStore_Services(t *testing.T) {

// Listing with no results returns an empty list.
ws := memdb.NewWatchSet()
idx, services, err := s.Services(ws, &acl.EnterpriseMeta{}, "", false)
idx, services, err := s.Services(ws, nil, "", false)
if err != nil {
t.Fatalf("err: %s", err)
}
Expand Down Expand Up @@ -2229,7 +2229,7 @@ func TestStateStore_Services(t *testing.T) {

// Pull all the services.
ws = memdb.NewWatchSet()
idx, services, err = s.Services(ws, &acl.EnterpriseMeta{}, "", false)
idx, services, err = s.Services(ws, nil, "", false)
if err != nil {
t.Fatalf("err: %s", err)
}
Expand Down

0 comments on commit 89ed772

Please sign in to comment.