flights_gui_tests 2.3.10 → 2.3.11
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 +4 -4
- data/features/support/classes/checkout/new_cluster.rb +1 -1
- data/features/support/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 22a7e957779fed7301f9721a582861f69874eed8
|
|
4
|
+
data.tar.gz: 79ebc8deaf900db52cfe6862cb5d74c953298bc1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6c87a261130eb221a85221235a464abe5fb204d8d617c311499042b4e04a9515f878362962e43b53d5ebcfb44277360f0bdfaa782e4c23af51ac570ae50d2d5
|
|
7
|
+
data.tar.gz: d770f3406d3a9dc1d2c8541f98ae5769a0252ba2e7311a2b39f08361d38d4dc27d730b687754c55a70a201d6cf2e6a42ad5be86d19ca1bc8b66501c26dd33220
|
|
@@ -68,7 +68,7 @@ module NewCheckout
|
|
|
68
68
|
@tarifas['adt'] = Price.new((html/"li.adult_fare span.price-currency").first.inner_text.strip.gsub(/\D/,''))
|
|
69
69
|
@tarifas['cnn'] = (html/"li.child_fare").first ? Price.new((html/"li.child_fare span.price-currency").first.inner_text.strip.gsub(/\D/,'')) : Price.new("$ 0",true)
|
|
70
70
|
@tarifas['inf'] = (html/"li.infant_fare").first ? Price.new((html/"li.infant_fare span.price-currency").first.inner_text.strip.gsub(/\D/,'')) : Price.new("$ 0",true)
|
|
71
|
-
@tarifas['tasas'] = (html/"li.taxes").first ? Price.new((html/"li.taxes span.price-currency").first.inner_text.
|
|
71
|
+
@tarifas['tasas'] = (html/"li.taxes").first ? Price.new((html/"li.taxes span.price-currency").first.inner_text.strip.gsub(/\D/,'')) : Price.new("$ 0",true)
|
|
72
72
|
@tarifas['cargos'] = (html/"li.charges").first ? Price.new((html/"li.charges span.price-currency").first.inner_text.strip.gsub(/\D/,'')) : Price.new("$ 0",true)
|
|
73
73
|
@tarifas['afip'] = (html/"li.tax_afip").first ? Price.new((html/"li.tax_afip span.price-currency").first.inner_text.strip.gsub(/\D/,'')) : Price.new("$ 0",true)
|
|
74
74
|
@tarifas['encargos'] = (html/"li.service_taxes").first ? Price.new((html/"li.service_taxes span.price-currency").first.inner_text.strip.gsub(/\D/,'')) : Price.new("$ 0",true)
|
data/features/support/version.rb
CHANGED