Skip to content
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.

Commit

Permalink
Fix messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-roemer committed Feb 28, 2015
1 parent 7f4d2b2 commit b751528
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/spec/simple-console.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ describe("simple-console", function () {
con.warn("warn");
con.warn.apply(con, ["warn apply"]);
con.warn.call(con, "warn call");
con.error("warn");
con.error.apply(con, ["warn apply"]);
con.error.call(con, "warn call");
con.error("error");
con.error.apply(con, ["error apply"]);
con.error.call(con, "error call");
});
});

Expand All @@ -42,9 +42,9 @@ describe("simple-console", function () {
con.warn("warn");
con.warn.apply(con, ["warn apply"]);
con.warn.call(con, "warn call");
con.error("warn");
con.error.apply(con, ["warn apply"]);
con.error.call(con, "warn call");
con.error("error");
con.error.apply(con, ["error apply"]);
con.error.call(con, "error call");
});
});
});

0 comments on commit b751528

Please sign in to comment.