Skip to content

Commit

Permalink
Fix Integration Tests To Run Search
Browse files Browse the repository at this point in the history
  • Loading branch information
vinayan3 committed Aug 7, 2024
1 parent b81fc9e commit d1769b2
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tests/integration/golang/aim/run/search_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -469,12 +469,17 @@ func (s *SearchTestSuite) TestStreamData_Ok() {
},
},
{
name: "NoExperimentNamesNoResults",
name: "NoExperimentNamesQueryResults",
request: request.SearchRunsRequest{
Query: `run.archived == True or run.archived == False`,
ExperimentNames: []string{},
},
runs: []*models.Run{},
runs: []*models.Run{
s.run1,
s.run2,
s.run3,
s.run4,
},
},
{
name: "SearchDurationOperationLess",
Expand Down

0 comments on commit d1769b2

Please sign in to comment.