refactored first test to pass

This commit is contained in:
Ben Hemann 2021-06-04 16:31:44 -05:00
parent 4ee4caa78f
commit ba464f5714

View File

@ -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');
});
});