diff --git a/tests/app/logicalOperators.js b/tests/app/logicalOperators.js index 68985318d..9c5024c9b 100644 --- a/tests/app/logicalOperators.js +++ b/tests/app/logicalOperators.js @@ -5,13 +5,13 @@ define([ 'app/logicalOperators' ], function(answers) { describe("logical operators", function(){ - it("you should be able to work with logical or", function() { + it("you should be able to work with logical and", function() { expect(answers.and(false, false)).not.to.be.ok(); expect(answers.and(true, false)).not.to.be.ok(); expect(answers.and(true, true)).to.be.ok(); }); - it("you should be able to work with logical and", function() { + it("you should be able to work with logical or", function() { expect(answers.or(true, false)).to.be.ok(); expect(answers.or(true, true)).to.be.ok(); expect(answers.or(false, false)).not.to.be.ok();