Navigation Menu

Skip to content

Commit

Permalink
Fixed issue with sinon.useFakeTimers() and Rhino.js 1.7R3
Browse files Browse the repository at this point in the history
  • Loading branch information
mklymyshyn committed Feb 19, 2012
1 parent c36e287 commit e73ccb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/sinon/util/fake_timers.js
Expand Up @@ -324,7 +324,7 @@ if (typeof sinon == "undefined") {

return clock;
};
}(typeof global != "undefined" ? global : this));
}(typeof global != "undefined" && typeof global !== "function" ? global : this));

sinon.timers = {
setTimeout: setTimeout,
Expand Down

0 comments on commit e73ccb4

Please sign in to comment.