From fc3d113d298cbe3bf6d482cb91b8099582c1fd62 Mon Sep 17 00:00:00 2001 From: "florent.teppe" Date: Thu, 20 Apr 2023 10:25:10 +0200 Subject: [PATCH] fix tests --- apps/openmw_test_suite/esm/testrefid.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/openmw_test_suite/esm/testrefid.cpp b/apps/openmw_test_suite/esm/testrefid.cpp index 6f50b465ef..15ec9e1766 100644 --- a/apps/openmw_test_suite/esm/testrefid.cpp +++ b/apps/openmw_test_suite/esm/testrefid.cpp @@ -254,9 +254,9 @@ namespace ESM { RefId::generated(42), "0x2a" }, { RefId::generated(std::numeric_limits::max()), "0xffffffffffffffff" }, { RefId::index(REC_ARMO, 42), "ARMO:0x2a" }, - { RefId::esm3ExteriorCell(-13, 42), "-13:42" }, + { RefId::esm3ExteriorCell(-13, 42), "#-13 42" }, { RefId::esm3ExteriorCell(std::numeric_limits::min(), std::numeric_limits::min()), - "#2147483648 -2147483648" }, + "#-2147483648 -2147483648" }, { RefId::esm3ExteriorCell(std::numeric_limits::max(), std::numeric_limits::max()), "#2147483647 2147483647" }, };