]> git.stg.codes - stg.git/blobdiff - tests/test_tariff.cpp
Ticket 37. 'Allow equal' and 'Allow cheaper' comments changed to
[stg.git] / 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);