diff --git a/service/test/agama/software/manager_test.rb b/service/test/agama/software/manager_test.rb index ad2770c4ec..d121571a54 100644 --- a/service/test/agama/software/manager_test.rb +++ b/service/test/agama/software/manager_test.rb @@ -234,11 +234,11 @@ describe "#products" do it "returns the list of known products" do products = subject.products - expect(products.size).to eq(2) expect(products).to all(be_a(Agama::Software::Product)) expect(products).to contain_exactly( an_object_having_attributes(id: "Tumbleweed"), - an_object_having_attributes(id: "MicroOS") + an_object_having_attributes(id: "MicroOS"), + an_object_having_attributes(id: "Leap_16.0") ) end end