Skip to content

Commit

Permalink
removed unneeded and undefined function
Browse files Browse the repository at this point in the history
  • Loading branch information
kolodny committed Jun 29, 2015
1 parent 3bff2ef commit 261f9d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions morse-code/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ describe('transmitter', function() {
timeouter: timeouter
}
transmitter(options, function() {
assert.deepEqual(fixTimes(toggledHistory, 50), [
assert.deepEqual(toggledHistory, [
0, 50, 100, 150, 200, 250, 400, 550, 600, 750, 800,
950, 1100, 1150, 1200, 1250, 1300, 1350
]);
Expand All @@ -70,7 +70,7 @@ describe('transmitter', function() {
timeouter: timeouter
}
transmitter(options, function() {
assert.deepEqual(fixTimes(toggledHistory, 50), [
assert.deepEqual(toggledHistory, [
0, 150, 300, 350, 400, 450, 500, 550, 600, 650,
800, 850, 900, 950, 1100, 1150, 1200, 1250, 1300,
1350, 1700, 1750, 1800, 1850, 2000, 2050, 2100,
Expand Down

0 comments on commit 261f9d2

Please sign in to comment.