From ebc8d0ffc3b170be96a2f2bd582ee92de344623e Mon Sep 17 00:00:00 2001 From: ThePhD Date: Sat, 15 Oct 2016 18:16:30 -0400 Subject: [PATCH] D'oh. Goofed the copy/paste: now the test is proper. --- tests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests.cpp b/tests.cpp index a236d046..fb2c4e21 100644 --- a/tests.cpp +++ b/tests.cpp @@ -698,6 +698,6 @@ TEST_CASE("numbers/integers", "make sure integers are detectable on most platfor REQUIRE(a_is_double); // TODO: will this fail on certain lower Lua versions? - REQUIRE_FALSE(a_is_int); - REQUIRE(a_is_double); + REQUIRE_FALSE(b_is_int); + REQUIRE(b_is_double); }