From 9a0dc96df2203f044f88775295d1b1ca0ba6c402 Mon Sep 17 00:00:00 2001 From: Alfonso Gregory Date: Wed, 14 Jul 2021 19:42:07 -0400 Subject: [PATCH] Update HistoryTests.cpp --- src/CalculatorUnitTests/HistoryTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CalculatorUnitTests/HistoryTests.cpp b/src/CalculatorUnitTests/HistoryTests.cpp index a74245c0..ec1220b5 100644 --- a/src/CalculatorUnitTests/HistoryTests.cpp +++ b/src/CalculatorUnitTests/HistoryTests.cpp @@ -83,7 +83,7 @@ namespace CalculatorFunctionalTests void AddSingleHistoryItem() { Initialize(); - size_r initialSize = m_historyViewModel->ItemsCount; + size_t initialSize = m_historyViewModel->ItemsCount; m_standardViewModel->SendCommandToCalcManager(static_cast(Command::Command1)); m_standardViewModel->SendCommandToCalcManager(static_cast(Command::CommandADD)); m_standardViewModel->SendCommandToCalcManager(static_cast(Command::Command8));