Skip to content

Commit

Permalink
Fixed test failure.
Browse files Browse the repository at this point in the history
The solver is getting faster!
  • Loading branch information
mitchell-as committed Oct 2, 2024
1 parent 851072a commit ff69c6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/progress_int_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ func (suite *ProgressIntegrationTestSuite) TestProgress() {
cp := ts.Spawn("checkout", "ActiveState-CLI/Empty")
cp.Expect(locale.T("install_runtime"))
cp.Expect("Checked out", e2e.RuntimeSourcingTimeoutOpt)
suite.Assert().NotContains(cp.Output(), "...")
suite.Assert().Contains(cp.Output(), "Resolving Dependencies ✔ Done") // no dots
cp.ExpectExitCode(0)

cp = ts.Spawn("checkout", "ActiveState-CLI/Empty", "Empty2", "--non-interactive")
cp.Expect("...")
cp.Expect("Checked out", e2e.RuntimeSourcingTimeoutOpt)
suite.Assert().Contains(cp.Output(), "Resolving Dependencies .") // at least one dot
cp.ExpectExitCode(0)

}
Expand Down

0 comments on commit ff69c6e

Please sign in to comment.