flights_gui_tests 2.4.83 → 2.4.84
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e061709c4026d849ffd6d93de8e7679925654f2d
|
|
4
|
+
data.tar.gz: 3f40603dd124ccb95b2a97eafd455569b85ef70e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d79ba7ca83daf13a3a68b690701b4276059cb5d25d3cc10e5b9930bc5bec32623a75fd309fa767c2266356b31ec8aa77d5c0ea76cd92f722a09294b8b54c3e90
|
|
7
|
+
data.tar.gz: ecb3d720b2dc8cf2b4792b7493de6219786a09af654639c1bd994dd2a401957456e79a21ec57470a830bdb785a7dc4c21e70a1acd5fc438a720d70d050ce7176
|
|
@@ -267,7 +267,11 @@ module NewCheckout
|
|
|
267
267
|
total_1.should be_within(3).of(total_2)
|
|
268
268
|
end
|
|
269
269
|
else
|
|
270
|
-
|
|
270
|
+
if descuento_element.present?
|
|
271
|
+
total_1.should equal(total_2+descuento_element.text.to_i)
|
|
272
|
+
else
|
|
273
|
+
total_1.should equal(total_2)
|
|
274
|
+
end
|
|
271
275
|
end
|
|
272
276
|
end
|
|
273
277
|
|
data/features/support/version.rb
CHANGED