Browse Source

Remove spaces from expect for 'Cross Browser Functions should prefix a list of properties' so test passes, and to match expected output of other tests.

master
Jonah Schulte 11 years ago
parent
commit
10612bb374
  1. 2
      test/functionsSpec.js

2
test/functionsSpec.js

@ -79,7 +79,7 @@ describe("Cross Browser Functions", function () {
it("should prefix a list of properties", function(done) {
render(property('prefix(-webkit, x, y, z)'), function(output, err) {
expect(output).toBe(property('-webkit-x, -webkit-y, -webkit-z'));
expect(output).toBe(property('-webkit-x,-webkit-y,-webkit-z'));
done();
});
});

Loading…
Cancel
Save