From c852686f00e0df897766608da21540dfd2a66a03 Mon Sep 17 00:00:00 2001 From: rusefi Date: Wed, 16 Jan 2019 23:36:38 -0500 Subject: [PATCH] fixing typo --- unit_tests/tests/test_hip9011.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/unit_tests/tests/test_hip9011.cpp b/unit_tests/tests/test_hip9011.cpp index 65a1703064..53280b1207 100644 --- a/unit_tests/tests/test_hip9011.cpp +++ b/unit_tests/tests/test_hip9011.cpp @@ -25,14 +25,14 @@ TEST(hip9011, lookup) { } TEST(hip9011, rpmLookup) { - HIP9011 instace(NULL); + HIP9011 instance(NULL); - instace.prepareHip9011RpmLookup(50); + instance.prepareHip9011RpmLookup(50); - EXPECT_EQ(31, instace.getIntegrationIndexByRpm(1)); - EXPECT_EQ(21, instace.getIntegrationIndexByRpm(1100)); - EXPECT_EQ(1, instace.getIntegrationIndexByRpm(6600)); - EXPECT_EQ(0, instace.getIntegrationIndexByRpm(16600)); + EXPECT_EQ(31, instance.getIntegrationIndexByRpm(1)); + EXPECT_EQ(21, instance.getIntegrationIndexByRpm(1100)); + EXPECT_EQ(1, instance.getIntegrationIndexByRpm(6600)); + EXPECT_EQ(0, instance.getIntegrationIndexByRpm(16600)); } TEST(hip9011, band) {