From 89ff872ab711440af9d21e560022336b4db8f75f Mon Sep 17 00:00:00 2001 From: "Christoph J. Scherr" Date: Mon, 22 Jul 2024 10:53:45 +0200 Subject: [PATCH] chore: remove a redundant test --- members/revsqrt/tests/features/book/revsqrt.feature | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/members/revsqrt/tests/features/book/revsqrt.feature b/members/revsqrt/tests/features/book/revsqrt.feature index 4d9ce7e..a478f67 100644 --- a/members/revsqrt/tests/features/book/revsqrt.feature +++ b/members/revsqrt/tests/features/book/revsqrt.feature @@ -1,15 +1,10 @@ Feature: inverted square root calculation - Scenario: Calculate fast inverted sqrt + Scenario: fast inverted sqrt is about the same as the regular inverted sqrt Given a number When we calculate the inverted square root of it using the fast inverted square root algorithm Then the result is about the same as if we calculate it normally - Scenario: Calculate regular inverted sqrt - Given a number - When we calculate the inverted square root of it normally - Then the result can be calculated - Scenario: Can the fast inverted sqrt be calculated? Given a number When we calculate the inverted square root of it using the fast inverted square root algorithm