mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-16 06:51:27 +00:00
Aged Brie quality increases by 2 When SellIn <=0
"Aged Brie" Quality increases by 1 as SellIn decreases. Line 78 to 84 will make "Aged Brie" Quality increases by 1 . A unit test for "Aged Brie" that has a SellIn value of 0 or less will result in a quality increase of 2. That is incorrect since the requirement states that "Aged Brie" Quality increases by 1 as SellIn approcahes. Lines 78 to 84 have been commented out to rectify the problem.
This commit is contained in:
parent
a0fb147402
commit
8d1d4ed2d7
@ -75,15 +75,15 @@ namespace GildedRose
|
||||
Items[i].Quality = Items[i].Quality - Items[i].Quality;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (Items[i].Quality < 50)
|
||||
{
|
||||
Items[i].Quality = Items[i].Quality + 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
//else
|
||||
//{
|
||||
// if (Items[i].Quality < 50)
|
||||
// {
|
||||
// Items[i].Quality = Items[i].Quality + 1;
|
||||
// }
|
||||
//}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user