Skip to content

Commit

Permalink
Fix flaky tests that fail every time the versions on the container ar…
Browse files Browse the repository at this point in the history
…e updated
  • Loading branch information
amazimbe committed Jan 29, 2025
1 parent e29f1af commit 1b1db67
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@
it "returns the correct package manager" do
expect(package_manager.name).to eq "devcontainers"
expect(package_manager.requirement).to be_nil
expect(package_manager.version.to_s).to eq "0.72.0"
expect(package_manager.version.to_s).to be_present
end
end

Expand All @@ -244,7 +244,7 @@
it "returns the correct language" do
expect(language.name).to eq "node"
expect(language.requirement).to be_nil
expect(language.version.to_s).to eq "18.20.6"
expect(language.version.to_s).to be_present
end
end
end
Expand Down

0 comments on commit 1b1db67

Please sign in to comment.