This commit is contained in:
DouglasMV 2019-05-30 16:34:24 -03:00 committed by GitHub
parent 0873473402
commit e4300bbb5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@ describe("readNumber", function() {
assert.strictEqual(readNumber(), 0);
});
it("continues the loop unti meets a number", function() {
it("continues the loop until meets a number", function() {
prompt.onCall(0).returns("not a number");
prompt.onCall(1).returns("not a number again");
prompt.onCall(2).returns("1");
@ -35,4 +35,4 @@ describe("readNumber", function() {
assert.isNull(readNumber());
});
});
});