diff --git a/TypeScript/test/gilded-rose.spec.ts b/TypeScript/test/gilded-rose.spec.ts index 0c192caf..e6e35e18 100644 --- a/TypeScript/test/gilded-rose.spec.ts +++ b/TypeScript/test/gilded-rose.spec.ts @@ -6,7 +6,7 @@ describe('Gilded Rose', function () { it('should foo', function() { const gildedRose = new GildedRose([ new Item('foo', 0, 0) ]); const items = gildedRose.updateQuality(); - expect(items[0].name).to.equal('fixme'); + expect(items[0].name).to.equal('foo'); }); });