diff --git a/js-mocha/test/test_gilded_rose.js b/js-mocha/test/test_gilded_rose.js index b367571c..9389af1a 100644 --- a/js-mocha/test/test_gilded_rose.js +++ b/js-mocha/test/test_gilded_rose.js @@ -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"); }); });