From 424a0fe7d00b675d84cfb4f4d814805d50ba00a3 Mon Sep 17 00:00:00 2001 From: Tait Hoyem <44244401+TTWNO@users.noreply.github.com> Date: Wed, 24 Apr 2019 16:49:22 +0000 Subject: [PATCH] Fix left side of board showing 9-2, instead of 8-1 --- tests/custom_printing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/custom_printing.cpp b/tests/custom_printing.cpp index 58971e2..3866eee 100644 --- a/tests/custom_printing.cpp +++ b/tests/custom_printing.cpp @@ -52,7 +52,7 @@ namespace Catch { ss << "{ {" << std::endl; ss << files << std::endl; for (int i = 2; i < 10; ++i){ - ss << 9-(i-2) << "|"; + ss << 8-(i-2) << "|"; for (int j = 1; j < 9; ++j){ int index = (i*10)+j; // This part loops through all positions in the list and checks if it contains the current index.