Skip to content

Commit

Permalink
Corrected path in test.js.
Browse files Browse the repository at this point in the history
Expected.jpeg was not prefixed with a path, even though it is in the test subdirectory. This caused a problem when running the tests.
  • Loading branch information
jaspervdg committed Aug 15, 2016
1 parent a521e98 commit f7bf8c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ tap("save-pixels saving a RGB png", function(t) {
tap("save-pixels saving a RGB jpeg", function(t) {
var x = zeros([64, 64, 3])
var actualFilepath = "temp.jpeg"
var expectedFilepath = "expected.jpeg"
var expectedFilepath = "test/expected.jpeg"

for(var i=0; i<64; ++i) {
for(var j=0; j<64; ++j) {
Expand Down

0 comments on commit f7bf8c8

Please sign in to comment.