Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Yevhen Ivantsov committed Aug 26, 2024
1 parent 7496e66 commit e18ec5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2etest/bamboo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func assertRemoteAgentList(t *testing.T, testConfig TestConfig, productUrl strin
err = json.NewDecoder(resp.Body).Decode(&agents)
assert.NoError(t, err)
expectedNumAgents := 2
assert.GreaterOrEqual(t, expectedNumAgents, len(agents), "Number of agents should match the expected count")
assert.GreaterOrEqual(t, len(agents), expectedNumAgents, "Number of agents should match the expected count")
for _, agent := range agents {
assert.True(t, agent.Active, "Agent %s (ID: %d) should be active", agent.Name, agent.ID)
}
Expand Down

0 comments on commit e18ec5b

Please sign in to comment.