From 18382917c6b1f12969648afae2e35c9c979ee42e Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Wed, 18 Mar 2020 21:39:42 +0100 Subject: [PATCH] Adapt tests to the recent width fix --- tests/RegionT.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/RegionT.cpp b/tests/RegionT.cpp index 354cd06b..2e049658 100644 --- a/tests/RegionT.cpp +++ b/tests/RegionT.cpp @@ -470,7 +470,7 @@ TEST_CASE("[Region] Parsing opcodes") SECTION("width") { - REQUIRE(region.width == 0.0f); + REQUIRE(region.width == 100.0f); region.parseOpcode({ "width", "4.2" }); REQUIRE(region.width == 4.2f); region.parseOpcode({ "width", "-4.2" });