Skip to content

Commit

Permalink
Updated test and updated Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
trivorak committed Feb 9, 2016
1 parent 40c03f0 commit 3afce34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ $ npm run watch
+ ~~Hat~~
+ Percussion Generator
+ ~~White Noise Generator~~
+ ~~LFO~~
+ ~~LFO with BPM sync~~
+ Sequencer
+ Sampler
+ MIDI input
Expand Down
4 changes: 2 additions & 2 deletions test/filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test('Set frequency', (t) => {
Filter.__Rewire__('ctx', ctx);

let filter = new Filter();
filter.setFreq(88);
filter.setFrequency(88);

t.strictEquals(filter.node.frequency.value, 88, 'should set frequency');
});
Expand Down Expand Up @@ -64,7 +64,7 @@ test('Get frequency', (t) => {

let filter = new Filter();

t.strictEquals(filter.getFreq(), 62, 'should get frequency');
t.strictEquals(filter.getFrequency(), 62, 'should get frequency');
});

test('Get Q', (t) => {
Expand Down

0 comments on commit 3afce34

Please sign in to comment.