Correct spelling mistakes

This commit is contained in:
Edward Betts
2019-03-06 20:31:22 +00:00
committed by Howard Wolosky
parent 07ff1c372f
commit 0197fa41da
7 changed files with 10 additions and 10 deletions

View File

@@ -101,7 +101,7 @@ namespace CalculatorUnitTests
}
}
// Perform calculations on diferent calculator modes and verify that they work independently
// Perform calculations on different calculator modes and verify that they work independently
TEST_METHOD(MultipleModesCalculationTest)
{
std::vector<StandardCalculatorViewModel^> viewModels(3);

View File

@@ -509,7 +509,7 @@ namespace CalculatorUnitTests
}
// Switch Calculator Mode and verify if mode switch is happening as expected.
// Test precendence to check if mode switch is happening
// Test precedence to check if mode switch is happening
// Standard mode 1+2*3 = 9; Scientific mode 1+2*3 = 7
// Intermediate value is also different. after 1 + 2 * , standard shows 3, scientific shows 2
TEST_METHOD(ButtonPressedCalculatorModeSwitch)