From 0000c59fcd301b3ccd59bed4ede559c18b286f1f Mon Sep 17 00:00:00 2001 From: Viktor Kovacs Date: Mon, 7 Jun 2021 21:53:30 +0200 Subject: [PATCH] Fix duplicated test case names. --- test/tests/geometry_test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tests/geometry_test.js b/test/tests/geometry_test.js index d768497..b634605 100644 --- a/test/tests/geometry_test.js +++ b/test/tests/geometry_test.js @@ -22,7 +22,7 @@ function CreateYRot90Quaternion () } describe ('Comparison', function () { - it ('IsGreater', function () { + it ('IsEqual', function () { assert (OV.IsEqual (1.0, 1.0)); assert (OV.IsEqual (1.0, 1.000000001)); assert (!OV.IsEqual (1.0, 1.0001)); @@ -124,7 +124,7 @@ describe ('Transformation', function() { assert (OV.CoordIsEqual3D (tr.TransformCoord3D (coord), new OV.Coord3D (19.0, 13.0, 3.0))); }); - it ('TRS Compose Test', function () { + it ('TRS Compose Test 2', function () { let rotation = CreateYRot90Quaternion (); let coord = new OV.Coord3D (1.0, 2.0, 3.0);