Skip to content

Commit

Permalink
Finish renamed started in elastic#4562
Browse files Browse the repository at this point in the history
  • Loading branch information
michalpristas committed May 6, 2024
1 parent f2011e4 commit bdf3a62
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions testing/integration/diagnostics_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func TestIsolatedUnitsDiagnosticsOptionalValues(t *testing.T) {
Local: false,
})

fixture, err := define.NewFixture(t, define.Version())
fixture, err := define.NewFixtureFromLocalBuild(t, define.Version())
require.NoError(t, err)

ctx, cancel := testcontext.WithDeadline(t, context.Background(), time.Now().Add(10*time.Minute))
Expand Down Expand Up @@ -207,7 +207,7 @@ func TestIsolatedUnitsDiagnosticsCommand(t *testing.T) {
Local: false,
})

f, err := define.NewFixture(t, define.Version())
f, err := define.NewFixtureFromLocalBuild(t, define.Version())
require.NoError(t, err)

ctx, cancel := testcontext.WithDeadline(t, context.Background(), time.Now().Add(10*time.Minute))
Expand Down
2 changes: 1 addition & 1 deletion testing/integration/fake_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ func TestFakeIsolatedUnitsComponent(t *testing.T) {
Local: true,
})

f, err := define.NewFixture(t, define.Version())
f, err := define.NewFixtureFromLocalBuild(t, define.Version())
require.NoError(t, err)

ctx, cancel := testcontext.WithDeadline(t, context.Background(), time.Now().Add(10*time.Minute))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func TestMonitoringPreserveTextConfig(t *testing.T) {
}

func (runner *MonitoringTextRunner) SetupSuite() {
fixture, err := define.NewFixture(runner.T(), define.Version())
fixture, err := define.NewFixtureFromLocalBuild(runner.T(), define.Version())
require.NoError(runner.T(), err)
runner.agentFixture = fixture

Expand Down
2 changes: 1 addition & 1 deletion testing/integration/monitoring_probe_reload_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func TestMonitoringLivenessReloadable(t *testing.T) {
}

func (runner *MonitoringRunner) SetupSuite() {
fixture, err := define.NewFixture(runner.T(), define.Version())
fixture, err := define.NewFixtureFromLocalBuild(runner.T(), define.Version())
require.NoError(runner.T(), err)
runner.agentFixture = fixture

Expand Down

0 comments on commit bdf3a62

Please sign in to comment.