From b040c7993cd74a1c88558246c4d8accb49fed4bc Mon Sep 17 00:00:00 2001 From: James South Date: Thu, 16 Oct 2014 01:00:57 +0100 Subject: [PATCH] Fixing web unit tests Former-commit-id: 2bad436452e79975d97848f3b7c5a3d12ee80c8d Former-commit-id: 511570333286289a6d070a9f4765b59bf8cbbac6 --- .../RegularExpressionUnitTests.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ImageProcessor.Web.UnitTests/RegularExpressionUnitTests.cs b/src/ImageProcessor.Web.UnitTests/RegularExpressionUnitTests.cs index 2ad22302a..13ac2b01b 100644 --- a/src/ImageProcessor.Web.UnitTests/RegularExpressionUnitTests.cs +++ b/src/ImageProcessor.Web.UnitTests/RegularExpressionUnitTests.cs @@ -288,10 +288,10 @@ namespace ImageProcessor.Web.UnitTests /// The expected result. /// [Test] - [TestCase("rotate=0", 0)] - [TestCase("rotate=270", 270)] - [TestCase("rotate=-270", 0)] - [TestCase("rotate=angle-28", 28)] + [TestCase("rotate=0", 0F)] + [TestCase("rotate=270", 270F)] + [TestCase("rotate=-270", 0F)] + [TestCase("rotate=angle-28", 28F)] public void TestRotateRegex(string input, int expected) { Processors.Rotate rotate = new Processors.Rotate();