From 9ffeb8031be79189742c5e7d936017b4e02f9936 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Mon, 2 Jan 2023 21:45:51 +0100 Subject: [PATCH] Fix tests regression --- Source/Engine/Tests/TestLevel.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/Engine/Tests/TestLevel.cpp b/Source/Engine/Tests/TestLevel.cpp index 0ed90ce45..671d60c50 100644 --- a/Source/Engine/Tests/TestLevel.cpp +++ b/Source/Engine/Tests/TestLevel.cpp @@ -33,11 +33,11 @@ TEST_CASE("Tags") auto b = Tags::Get(TEXT("B")); auto b1 = Tags::Get(TEXT("B.1")); auto c = Tags::Get(TEXT("C")); - CHECK(a.Index == 0); - CHECK(a1.Index == 1); - CHECK(b.Index == 2); - CHECK(b1.Index == 3); - CHECK(c.Index == 4); + CHECK(a.Index == 1); + CHECK(a1.Index == 2); + CHECK(b.Index == 3); + CHECK(b1.Index == 4); + CHECK(c.Index == 5); Tags::List = prevTags; }