Removed if statements and fixed style issues

This commit is contained in:
TheHollidayInn
2015-07-22 15:38:17 -05:00
parent 107e27a2c6
commit c61eccaaba
2 changed files with 3 additions and 13 deletions

View File

@@ -91,7 +91,6 @@ describe('Inventory Controller', function() {
}));
describe('Deselecting Items', function() {
it('deselects a food', function(){
scope.chooseFood('Meat');
scope.deselectItem();
@@ -109,7 +108,5 @@ describe('Inventory Controller', function() {
scope.deselectItem();
expect(scope.selectedEgg).to.eql(null);
});
});
});