From 941ad2ae67dcc0fa47c301d02a97cddf54272aee Mon Sep 17 00:00:00 2001 From: adeveria Date: Wed, 18 Sep 2013 17:05:33 -0700 Subject: [PATCH] remove matrix test that didn't make sense --- test/matrix.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/test/matrix.js b/test/matrix.js index 31611c5..ea99c58 100644 --- a/test/matrix.js +++ b/test/matrix.js @@ -86,18 +86,6 @@ describe("Matrix methods", function () { f: 30 }); }); - it("Matrix.scale - x, y, cx", function() { - var matrix = new Savage.Matrix(1, 0, 0, 1, 20, 30); - matrix.scale(2, 3, 5); - expect(matrix).to.eql({ - a: 2, - b: 0, - c: 0, - d: 3, - e: 15, - f: 25 - }); - }); it("Matrix.scale - x, y, cx, cy", function() { var matrix = new Savage.Matrix(1, 0, 0, 1, 20, 30); matrix.scale(2, 3, 5, -5);