Skip to content

Commit

Permalink
Try to fix the last remaning test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Munter committed Jul 18, 2014
1 parent 7d4814f commit a72055e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/spriteBackgroundImages.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ describe('spriteBackgroundImages', function () {
expect(assetGraph, 'to contain relations', 'CssImage', 2);

var cssImageHrefs = _.pluck(assetGraph.findRelations({type: 'CssImage'}), 'href').sort();
expect(cssImageHrefs[0], 'to match', /^sprite-.*?-\d+\.png\?pngquant=128$/);
expect(cssImageHrefs[1], 'to equal', 'myImage.png?pngquant=128');
expect(cssImageHrefs[0], 'to equal', 'myImage.png?pngquant=128');
expect(cssImageHrefs[1], 'to match', /^sprite-.*?-\d+\.png\?pngquant=128$/);
})
.run(done);
});
Expand Down

0 comments on commit a72055e

Please sign in to comment.