Fixed typos in test suite descriptions.

This commit is contained in:
Felix Rilling
2019-03-10 11:07:40 +01:00
parent 239a615770
commit e33b12b17c
4 changed files with 5 additions and 5 deletions

View File

@@ -209,7 +209,7 @@ describe("JsApiReporter", function() {
expect(reporter.suiteResults(1, 1)).toEqual([suiteResult2]);
});
it("returns nothing for out of bounds indicies", function() {
it("returns nothing for out of bounds indices", function() {
expect(reporter.suiteResults(0, 3)).toEqual([suiteResult1, suiteResult2]);
expect(reporter.suiteResults(2, 3)).toEqual([]);
});