Skip to content

Commit afd58ed

Browse files
codesomepracucci
andauthored
Upgrade Prometheus to latest master (cortexproject/cortex#3373)
* Upgrade Prometheus to latest master Signed-off-by: Ganesh Vernekar <[email protected]> * Add another commit Signed-off-by: Ganesh Vernekar <[email protected]> * Fixed test Signed-off-by: Marco Pracucci <[email protected]> * Upgrade Prometheus again to fix the panic Signed-off-by: Ganesh Vernekar <[email protected]> * Fix tests Signed-off-by: Ganesh Vernekar <[email protected]> * Fixed test Signed-off-by: Marco Pracucci <[email protected]> * CHANGELOG entry Signed-off-by: Ganesh Vernekar <[email protected]> * Re-formatted CHANGELOG entry Signed-off-by: Marco Pracucci <[email protected]> Co-authored-by: Marco Pracucci <[email protected]>
1 parent 3b34149 commit afd58ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scenario_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"time"
1111

1212
"github.com/go-kit/kit/log"
13-
"github.com/prometheus/prometheus/util/testutil"
13+
"github.com/stretchr/testify/assert"
1414
"github.com/stretchr/testify/require"
1515
"github.com/thanos-io/thanos/pkg/objstore/s3"
1616
"gopkg.in/yaml.v2"
@@ -23,7 +23,7 @@ const bktName = "cheesecake"
2323

2424
func spinup(t *testing.T, networkName string) (*e2e.Scenario, *e2e.HTTPService, *e2e.HTTPService) {
2525
s, err := e2e.NewScenario(networkName)
26-
testutil.Ok(t, err)
26+
assert.NoError(t, err)
2727

2828
m1 := e2edb.NewMinio(9000, bktName)
2929
m2 := e2edb.NewMinio(9001, bktName)

0 commit comments

Comments
 (0)