Skip to content

Commit

Permalink
service: Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
joseivanlopez committed May 15, 2024
1 parent 2b601e3 commit a90adc0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions service/test/agama/software/manager_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,9 @@
describe "#products" do
it "returns the list of known products" do
products = subject.products
expect(products.size).to eq(4)
expect(products.size).to eq(3)
expect(products).to all(be_a(Agama::Software::Product))
expect(products).to contain_exactly(
an_object_having_attributes(id: "ALP-Dolomite"),
an_object_having_attributes(id: "Tumbleweed"),
an_object_having_attributes(id: "MicroOS"),
an_object_having_attributes(id: "MicroOS-Desktop")
Expand Down

0 comments on commit a90adc0

Please sign in to comment.