ba 0.0.9 → 0.0.10
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.
- data/lib/ba/banks/bancolombia.rb +4 -4
- data/lib/ba/helpers/bancolombia_helper.rb +1 -1
- data/lib/ba/version.rb +1 -1
- data/spec/lib/ba/cli_spec.rb +1 -1
- metadata +1 -1
data/lib/ba/banks/bancolombia.rb
CHANGED
@@ -51,12 +51,12 @@ module Ba::Banks
|
|
51
51
|
|
52
52
|
def process_questions
|
53
53
|
puts "The answer for the following questions will not be saved"
|
54
|
-
|
55
|
-
|
54
|
+
answer_1 = first_question
|
55
|
+
answer_2 = second_question
|
56
56
|
|
57
57
|
form = get_question_form do |f|
|
58
|
-
f.userAnswer1 =
|
59
|
-
f.userAnswer2 =
|
58
|
+
f.userAnswer1 = answer_1
|
59
|
+
f.userAnswer2 = answer_2
|
60
60
|
end
|
61
61
|
agent.submit(form)
|
62
62
|
end
|
data/lib/ba/version.rb
CHANGED
data/spec/lib/ba/cli_spec.rb
CHANGED