From ec22686f8a5d029c63964ec512dbda446bb80338 Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Sat, 28 Dec 2013 19:40:54 +0100 Subject: [PATCH] Tests: typo in test class name ModifiedBesselTests --- .../SpecialFunctionsTests/ModifiedBesselTests.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/UnitTests/SpecialFunctionsTests/ModifiedBesselTests.cs b/src/UnitTests/SpecialFunctionsTests/ModifiedBesselTests.cs index 0673bac4..7ac100d5 100644 --- a/src/UnitTests/SpecialFunctionsTests/ModifiedBesselTests.cs +++ b/src/UnitTests/SpecialFunctionsTests/ModifiedBesselTests.cs @@ -28,16 +28,16 @@ // OTHER DEALINGS IN THE SOFTWARE. // +using System; +using NUnit.Framework; + namespace MathNet.Numerics.UnitTests.SpecialFunctionsTests { - using System; - using NUnit.Framework; - /// /// Modified Bessel functions tests. /// [TestFixture, Category("Functions")] - public class BodifiedBesselTests + public class ModifiedBesselTests { [Test] public void BesselI0Approx([Range(-3.75, 3.75, 0.25)] double x)