Parcourir la source

[master] Fixed a likely type d1 -> r1

Francis Dupont il y a 7 ans
Parent
commit
73c7435bcd
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/lib/hooks/tests/common_test_class.h

+ 1 - 1
src/lib/hooks/tests/common_test_class.h

@@ -154,7 +154,7 @@ public:
         handle.setArgument("data_1", d1);
         manager->callCommandHandlers("command-one", handle);
         handle.getArgument(RESULT, result);
-        EXPECT_EQ(d1, result) << "command-one" << COMMON_TEXT;
+        EXPECT_EQ(r1, result) << "command-one" << COMMON_TEXT;
 
         // Perform the second calculation: it should multiply the data by 10
         // and return in the result.