Skip to content

Commit

Permalink
satellite/orders: fix flaky TestProjectBandwidthDailyRollups
Browse files Browse the repository at this point in the history
It was possible that one of the nodes gets cancelled hence the
total may be different.

Fixes #6558

Change-Id: Ie097121881eddc2f9359b530b0dc4e978fa29abf
  • Loading branch information
egonelbre committed Apr 12, 2024
1 parent b2b80a4 commit ac5a422
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions satellite/orders/orders_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,9 @@ func TestSettledAmountsMatch(t *testing.T) {

func TestProjectBandwidthDailyRollups(t *testing.T) {
testplanet.Run(t, testplanet.Config{
SatelliteCount: 1, StorageNodeCount: 4, UplinkCount: 1,
SatelliteCount: 1, StorageNodeCount: 3, UplinkCount: 1,
Reconfigure: testplanet.Reconfigure{
Satellite: testplanet.ReconfigureRS(2, 3, 4, 4),
Satellite: testplanet.ReconfigureRS(3, 3, 3, 3),
},
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
// stop any async flushes because we want to be sure when some values are
Expand Down

0 comments on commit ac5a422

Please sign in to comment.