]> git.stg.codes - stg.git/commitdiff
Ticket 37. 'Allow equal' and 'Allow cheaper' comments changed to
authorElena Mamontova <helenh463@gmail.com>
Fri, 9 Sep 2016 07:23:11 +0000 (10:23 +0300)
committerElena Mamontova <helenh463@gmail.com>
Fri, 9 Sep 2016 07:23:11 +0000 (10:23 +0300)
'Prohibit equal' and 'Prohibit cheaper' in the testobject::test<9>()
function.

tests/test_tariff.cpp

index 261acd26fd7fcb1cb9580b654e1567e814cd6d0f..be895f27dad53ce52586b22f37860e5c0ff813a0 100644 (file)
@@ -413,12 +413,12 @@ namespace tut
         td.tariffConf.fee = 50;
         TARIFF_IMPL cheaper(td);
 
-        ensure_equals("Allow cheaper", !tariff.TariffChangeIsAllowed(cheaper).empty(), true);
+        ensure_equals("Prohibit cheaper", !tariff.TariffChangeIsAllowed(cheaper).empty(), true);
 
         td.tariffConf.fee = 100;
         TARIFF_IMPL equal(td);
 
-        ensure_equals("Allow equal", !tariff.TariffChangeIsAllowed(equal).empty(), true);
+        ensure_equals("Prohibit equal", !tariff.TariffChangeIsAllowed(equal).empty(), true);
 
         td.tariffConf.fee = 150;
         TARIFF_IMPL expensive(td);