Skip to content

Commit

Permalink
TestCase does not need to be Enumerable.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoglan committed Nov 17, 2013
1 parent 3e3d4ec commit ada2d57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/test/unit/test_case.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Test.Unit.extend({
TestCase: new JS.Class({
include: Test.Unit.Assertions,

extend: [Enumerable, {
extend: {
STARTED: 'Test.Unit.TestCase.STARTED',
FINISHED: 'Test.Unit.TestCase.FINISHED',

Expand Down Expand Up @@ -131,7 +131,7 @@ Test.Unit.extend({
}
return false;
}
}],
},

initialize: function(testMethodName) {
if (typeof this[testMethodName] !== 'function') throw 'invalid_test';
Expand Down

0 comments on commit ada2d57

Please sign in to comment.