From: Elena Mamontova <helenh463@gmail.com>
Date: Fri, 9 Sep 2016 07:18:40 +0000 (+0300)
Subject: Ticket 37. 'Allow equal' and 'Allow expensive' comments changed to
X-Git-Tag: 2.409~99
X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/31dec7adb940221230da294ac1e37230dc101c21?ds=sidebyside

Ticket 37. 'Allow equal' and 'Allow expensive' comments changed to
'Prohibit equal' and 'Prohibit expensive' in the testobject::test<8>()
function.
---

diff --git a/tests/test_tariff.cpp b/tests/test_tariff.cpp
index 7b1250c5..261acd26 100644
--- a/tests/test_tariff.cpp
+++ b/tests/test_tariff.cpp
@@ -391,12 +391,12 @@ namespace tut
         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);
 
-        ensure_equals("Allow expensive", !tariff.TariffChangeIsAllowed(expensive).empty(), true);
+        ensure_equals("Prohibit expensive", !tariff.TariffChangeIsAllowed(expensive).empty(), true);
     }
 
     template<>