From 10612bb3747236ad0a1873fc16afa2e43015928c Mon Sep 17 00:00:00 2001 From: Jonah Schulte Date: Fri, 19 Sep 2014 16:31:57 -0400 Subject: [PATCH] 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. --- test/functionsSpec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functionsSpec.js b/test/functionsSpec.js index 6e2bc03..7fadb69 100644 --- a/test/functionsSpec.js +++ b/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(); }); });