@@ -148,26 +148,26 @@ class StudentFinanceCalculatorTest < ActiveSupport::TestCase
148
148
)
149
149
end
150
150
151
- should "be £9250 for full-time student" do
151
+ should "be £9535 for full-time student" do
152
152
@calculator . course_type = "full-time"
153
- assert_equal 9250 , @calculator . tuition_fee_maximum
153
+ assert_equal 9535 , @calculator . tuition_fee_maximum
154
154
end
155
155
156
- should "be £6935 for part-time student" do
156
+ should "be £7145 for part-time student" do
157
157
@calculator . course_type = "part-time"
158
- assert_equal 6935 , @calculator . tuition_fee_maximum
158
+ assert_equal 7145 , @calculator . tuition_fee_maximum
159
159
end
160
160
end
161
161
162
162
context "maximum tuition fee" do
163
- should "be £9250 for a full time student" do
163
+ should "be £9535 for a full time student" do
164
164
calculator = StudentFinanceCalculator . new
165
- assert_equal 9250 , calculator . tuition_fee_maximum_full_time
165
+ assert_equal 9535 , calculator . tuition_fee_maximum_full_time
166
166
end
167
167
168
- should "be £6935 for part time student" do
168
+ should "be £7145 for part time student" do
169
169
calculator = StudentFinanceCalculator . new
170
- assert_equal 6935 , calculator . tuition_fee_maximum_part_time
170
+ assert_equal 7145 , calculator . tuition_fee_maximum_part_time
171
171
end
172
172
end
173
173
0 commit comments