fix: fix test function

This commit is contained in:
Chaplin Artem 2023-04-22 18:32:48 +03:00
parent b439f0631c
commit 17d88159f8

View File

@ -5,7 +5,7 @@ describe("Gilded Rose", function() {
it("should foo", function() {
const gildedRose = new Shop([ new Item("foo", 0, 0) ]);
const items = gildedRose.updateQuality();
expect(items[0].name).to.equal("fixme");
expect(items[0].name).to.equal("foo");
});
});