diff --git a/lib/data/minimum_wage_data.yml b/lib/data/minimum_wage_data.yml index c5224440479..a7c56c0c75f 100644 --- a/lib/data/minimum_wage_data.yml +++ b/lib/data/minimum_wage_data.yml @@ -139,4 +139,4 @@ :max_age: 1000 :rate: 6.70 :apprentice_rate: 3.30 - :accommodation_rate: 5.08 + :accommodation_rate: 5.35 diff --git a/lib/smart_answer/calculators/minimum_wage_calculator.rb b/lib/smart_answer/calculators/minimum_wage_calculator.rb index cab8298caaa..9b77aaa2a56 100644 --- a/lib/smart_answer/calculators/minimum_wage_calculator.rb +++ b/lib/smart_answer/calculators/minimum_wage_calculator.rb @@ -1,20 +1,17 @@ module SmartAnswer::Calculators class MinimumWageCalculator - attr_accessor :overtime_hours, :overtime_hourly_rate, :accommodation_cost + attr_accessor :age, :pay_frequency, :basic_hours, :basic_pay, :is_apprentice, + :overtime_hours, :overtime_hourly_rate, :accommodation_cost - attr_accessor :age, :date, :pay_frequency, :basic_hours, :basic_pay, :is_apprentice - - def date=(date) - @date = date - @minimum_wage_data = minimum_wage_data_for_date(@date) - end + attr_reader :date, :what_to_check def initialize(params = {}) @age = params[:age] @date = (params[:date].nil? ? Date.today : params[:date]) @basic_hours = params[:basic_hours].to_f @basic_pay = params[:basic_pay].to_f + @what_to_check = params[:what_to_check] @is_apprentice = params[:is_apprentice] @pay_frequency = params[:pay_frequency] || 7 @overtime_hours = params[:overtime_hours].to_i || 0 @@ -23,6 +20,11 @@ def initialize(params = {}) @minimum_wage_data = minimum_wage_data_for_date(@date) end + def date=(date) + @date = date + @minimum_wage_data = minimum_wage_data_for_date(@date) + end + def valid_age?(age) age > 0 && age <= 200 end @@ -47,6 +49,10 @@ def valid_accommodation_usage?(accommodation_usage) accommodation_usage >= 0 && accommodation_usage <= 7 end + def valid_age_for_living_wage?(age) + age.to_i >= 25 + end + def basic_rate rate = @basic_pay / @basic_hours if overtime_hours > 0 and overtime_hourly_rate > 0 and rate > overtime_hourly_rate @@ -122,6 +128,10 @@ def minimum_wage_or_above? minimum_hourly_rate <= total_hourly_rate end + def living_wage_or_above? + national_living_wage_rate <= total_hourly_rate.to_f + end + def accommodation_adjustment(charge, number_of_nights) charge = charge.to_f number_of_nights = number_of_nights.to_i @@ -156,10 +166,18 @@ def free_accommodation_rate @minimum_wage_data[:accommodation_rate] end + def national_living_wage_rate + 7.2 + end + def apprentice_eligible_for_minimum_wage? date >= Date.parse('2010-10-01') end + def eligible_for_living_wage? + valid_age_for_living_wage?(age) + end + def under_school_leaving_age? age < 16 end diff --git a/lib/smart_answer_flows/am-i-getting-minimum-wage/am_i_getting_minimum_wage.govspeak.erb b/lib/smart_answer_flows/am-i-getting-minimum-wage/am_i_getting_minimum_wage.govspeak.erb index 0c00c51bc15..ece9b60f421 100644 --- a/lib/smart_answer_flows/am-i-getting-minimum-wage/am_i_getting_minimum_wage.govspeak.erb +++ b/lib/smart_answer_flows/am-i-getting-minimum-wage/am_i_getting_minimum_wage.govspeak.erb @@ -3,9 +3,13 @@ <% end %> <% content_for :meta_description do %> - Check if your pay matches the National Minimum Wage or if your employer owes you payments from past years. + Check if your pay matches the National Minimum Wage, the national living wage or if your employer owes you payments from past years. <% end %> <% content_for :body do %> Check if your pay matches the National Minimum Wage or if your employer owes you payments from past years. + + You can also check if you'll get the national living wage from 1 April 2016. + + ^You must be at least 25 years old to get the national living wage.^ <% end %> diff --git a/lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/current_payment_above.govspeak.erb b/lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/current_payment_above.govspeak.erb index 8f9d8c1fc18..e42abaaf808 100644 --- a/lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/current_payment_above.govspeak.erb +++ b/lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/current_payment_above.govspeak.erb @@ -1,11 +1,27 @@ <% content_for :body do %> $C - You are getting the National Minimum Wage. + <% if calculator.what_to_check == 'current_payment_april_2016' && calculator.eligible_for_living_wage? %> + <% if calculator.living_wage_or_above? %> + You will be getting the national living wage + <% else %> + You are getting the National Minimum wage but your pay should be increased to at least the national living wage from 1 April 2016. + <% end %> + <% else %> + You are getting the National Minimum Wage. + <% end %> $C - The National Minimum Wage per hour for your age | Your actual pay - - | - - <%= format_money(calculator.minimum_hourly_rate) %> | <%= format_money(calculator.total_hourly_rate) %> + <% if calculator.what_to_check == 'current_payment_april_2016' && calculator.eligible_for_living_wage? %> + The national living wage per hour for your age will be | Your actual pay + <% else %> + The National Minimum Wage per hour for your age | Your actual pay + <% end %> + - | - + <% if calculator.what_to_check == 'current_payment_april_2016' && calculator.eligible_for_living_wage? %> + <%= format_money(calculator.national_living_wage_rate) %> | <%= format_money(calculator.total_hourly_rate) %> + <% else %> + <%= format_money(calculator.minimum_hourly_rate) %> | <%= format_money(calculator.total_hourly_rate) %> + <% end %> If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. diff --git a/lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/current_payment_below.govspeak.erb b/lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/current_payment_below.govspeak.erb index 8e26be3dd18..01fbe297ffa 100644 --- a/lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/current_payment_below.govspeak.erb +++ b/lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/current_payment_below.govspeak.erb @@ -9,6 +9,8 @@ \* This figure has been rounded to the nearest penny. + ^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. <%= render partial: '../../shared/minimum_wage/acas_information.govspeak.erb' -%> diff --git a/lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/does_not_apply_to_first_year_apprentices.govspeak.erb b/lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/does_not_apply_to_first_year_apprentices.govspeak.erb new file mode 100644 index 00000000000..c925cb06b0b --- /dev/null +++ b/lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/does_not_apply_to_first_year_apprentices.govspeak.erb @@ -0,0 +1,5 @@ +<% content_for :body do %> + You won't get the national living wage as a first year apprentice. + + You'll only get the [National Minimum Wage for an apprentice.](/apprenticeships-guide/pay-and-conditions) +<% end %> diff --git a/lib/smart_answer_flows/am-i-getting-minimum-wage/questions/how_old_are_you.govspeak.erb b/lib/smart_answer_flows/am-i-getting-minimum-wage/questions/how_old_are_you.govspeak.erb index 544ff62439b..87f03a3d5bf 100644 --- a/lib/smart_answer_flows/am-i-getting-minimum-wage/questions/how_old_are_you.govspeak.erb +++ b/lib/smart_answer_flows/am-i-getting-minimum-wage/questions/how_old_are_you.govspeak.erb @@ -1,5 +1,5 @@ <% content_for :title do %> - How old are you? + <%= age_title %> <% end %> <% content_for :suffix_label do %> @@ -9,3 +9,6 @@ <% content_for :error_message do %> Please enter a whole number greater than 0 <% end %> +<% content_for :valid_age_for_living_wage? do %> + You must be 25 or over to get the national living wage +<% end %> diff --git a/lib/smart_answer_flows/am-i-getting-minimum-wage/questions/what_would_you_like_to_check.govspeak.erb b/lib/smart_answer_flows/am-i-getting-minimum-wage/questions/what_would_you_like_to_check.govspeak.erb index 66dd62fc79e..ffd7096a56f 100644 --- a/lib/smart_answer_flows/am-i-getting-minimum-wage/questions/what_would_you_like_to_check.govspeak.erb +++ b/lib/smart_answer_flows/am-i-getting-minimum-wage/questions/what_would_you_like_to_check.govspeak.erb @@ -4,5 +4,6 @@ <% options( "current_payment": "If you're getting the National Minimum Wage (from October 2015)", - "past_payment": "If an employer owes you past payments (before October 2015)" + "past_payment": "If an employer owes you past payments (before October 2015)", + "current_payment_april_2016": "If you'll get the national living wage (from 1 April 2016)" ) %> diff --git a/lib/smart_answer_flows/am-i-getting-minimum-wage/questions/will_you_be_a_first_year_apprentice.govspeak.erb b/lib/smart_answer_flows/am-i-getting-minimum-wage/questions/will_you_be_a_first_year_apprentice.govspeak.erb new file mode 100644 index 00000000000..09e3ed51b06 --- /dev/null +++ b/lib/smart_answer_flows/am-i-getting-minimum-wage/questions/will_you_be_a_first_year_apprentice.govspeak.erb @@ -0,0 +1,8 @@ +<% content_for :title do %> + Will you be in the first year of an apprenticeship on 1 April 2016? +<% end %> + +<% options( + "no": "No", + "yes": "Yes" +) %> diff --git a/lib/smart_answer_flows/shared/minimum_wage/_acas_information.govspeak.erb b/lib/smart_answer_flows/shared/minimum_wage/_acas_information.govspeak.erb index 79918635e5e..46e2c7e56e9 100644 --- a/lib/smart_answer_flows/shared/minimum_wage/_acas_information.govspeak.erb +++ b/lib/smart_answer_flows/shared/minimum_wage/_acas_information.govspeak.erb @@ -1,9 +1,11 @@ -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/lib/smart_answer_flows/shared_logic/minimum_wage.rb b/lib/smart_answer_flows/shared_logic/minimum_wage.rb index 775d0257994..d44305eb3aa 100644 --- a/lib/smart_answer_flows/shared_logic/minimum_wage.rb +++ b/lib/smart_answer_flows/shared_logic/minimum_wage.rb @@ -2,6 +2,11 @@ multiple_choice :what_would_you_like_to_check? do option "current_payment" option "past_payment" + option "current_payment_april_2016" if self.flow_name == 'am-i-getting-minimum-wage' + + calculate :calculator do |response| + Calculators::MinimumWageCalculator.new(what_to_check: response) + end calculate :accommodation_charge do nil @@ -9,6 +14,7 @@ permitted_next_nodes = [ :are_you_an_apprentice?, + :will_you_be_a_first_year_apprentice?, :past_payment_date? ] @@ -16,14 +22,12 @@ case response when 'current_payment' :are_you_an_apprentice? + when 'current_payment_april_2016' + :will_you_be_a_first_year_apprentice? when 'past_payment' :past_payment_date? end end - - calculate :calculator do - Calculators::MinimumWageCalculator.new - end end # Q1A @@ -68,6 +72,27 @@ end end +# Q2 - April 2016 +multiple_choice :will_you_be_a_first_year_apprentice? do + option :yes + option :no + + permitted_next_nodes = [ + :does_not_apply_to_first_year_apprentices, + :how_old_are_you? + ] + + next_node(permitted: permitted_next_nodes) do |response| + case response + when 'yes' + calculator.is_apprentice = true + :does_not_apply_to_first_year_apprentices + when 'no' + :how_old_are_you? #Q3 + end + end +end + # Q2 Past multiple_choice :were_you_an_apprentice? do option "no" @@ -98,10 +123,26 @@ # Q3 value_question :how_old_are_you?, parse: Integer do + precalculate :age_title do + if calculator.what_to_check == 'current_payment_april_2016' + "How old will you be on 1 April 2016?" + else + "How old are you?" + end + end + validate do |response| calculator.valid_age?(response) end + validate :valid_age_for_living_wage? do |response| + if calculator.what_to_check == 'current_payment_april_2016' + calculator.valid_age_for_living_wage?(response) + else + true + end + end + permitted_next_nodes = [ :under_school_leaving_age, :how_often_do_you_get_paid? @@ -405,5 +446,6 @@ outcome :past_payment_below outcome :under_school_leaving_age +outcome :does_not_apply_to_first_year_apprentices outcome :does_not_apply_to_historical_apprentices outcome :under_school_leaving_age_past diff --git a/test/artefacts/am-i-getting-minimum-wage/am-i-getting-minimum-wage.txt b/test/artefacts/am-i-getting-minimum-wage/am-i-getting-minimum-wage.txt index 04d4f1c3fe1..046d76068b7 100644 --- a/test/artefacts/am-i-getting-minimum-wage/am-i-getting-minimum-wage.txt +++ b/test/artefacts/am-i-getting-minimum-wage/am-i-getting-minimum-wage.txt @@ -2,3 +2,7 @@ National Minimum Wage calculator for workers Check if your pay matches the National Minimum Wage or if your employer owes you payments from past years. +You can also check if you'll get the national living wage from 1 April 2016. + +^You must be at least 25 years old to get the national living wage.^ + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/no.txt index bed4cd2f7cd..54c497605ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index bed4cd2f7cd..54c497605ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 8eeed82e72c..5d44501e1e9 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_free/5.txt index bb0aeddb2d7..82205434a46 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/no.txt index bed4cd2f7cd..54c497605ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index bed4cd2f7cd..54c497605ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index cdaa5474d50..0207deb900f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 1781c7972bd..c1fbe1e9931 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/no.txt index 2e63f97f977..ded1c6cd164 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 2e63f97f977..ded1c6cd164 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 588d21a7aa2..871e288be74 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_free/5.txt index 1061b04b307..302fce39781 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/no.txt index a60817f582a..389f5edc182 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index a60817f582a..389f5edc182 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 084eb4be55e..cdea42e7e8e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 8a6b0e60d9c..17588733ae0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/no.txt index bed4cd2f7cd..54c497605ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index bed4cd2f7cd..54c497605ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index ce6c86b8255..249bdcabe71 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_free/5.txt index d841a20a28d..15c21b303d8 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/no.txt index bed4cd2f7cd..54c497605ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index bed4cd2f7cd..54c497605ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 7b43980203b..4b3e53cb4c3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_free/5.txt index d696bc0438c..3273d1c5593 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/no.txt index 2e63f97f977..ded1c6cd164 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 2e63f97f977..ded1c6cd164 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index d997de7a9d8..281249e8faf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_free/5.txt index 35b25482089..67c78c6d459 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/no.txt index a60817f582a..389f5edc182 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index a60817f582a..389f5edc182 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 732845f71d1..ff30207b22c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_free/5.txt index a1f5b721c94..ddc6be3cd2c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/no.txt index 48ad2531c29..54bb88b3087 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/no.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 48ad2531c29..54bb88b3087 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 244ba25227c..d7d80d86b9b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_free/5.txt index 23a750de065..ed1d6c95655 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/no.txt index a88a137b37f..cb7e601918f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/no.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index a88a137b37f..cb7e601918f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 31aa308850c..ddf30799a0f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 0685e7676ff..e1b60787d5b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/no.txt index 623ea1bcad8..c651aefa895 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 623ea1bcad8..c651aefa895 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index d9dda098fc2..ab9f2756f8f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_free/5.txt index 18ec363c774..0bb7bb3a5cf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/no.txt index bab2c2e17d5..0ad91ef6156 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index bab2c2e17d5..0ad91ef6156 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index fdd9ada939a..8121104d066 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index c4c18f63c94..55694998841 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/no.txt index 48ad2531c29..54bb88b3087 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/no.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 48ad2531c29..54bb88b3087 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 56484d1b33d..cbf1d04fe85 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_free/5.txt index 4700b390f9f..c340cc6ab16 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/no.txt index a88a137b37f..cb7e601918f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/no.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index a88a137b37f..cb7e601918f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 09af420d0c8..0d8186e9f5c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 8e38eb33435..bc718188312 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/no.txt index 623ea1bcad8..c651aefa895 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 623ea1bcad8..c651aefa895 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 97cf4722ba0..496785188a0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_free/5.txt index 7687db7df82..a84f6a6b7fd 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/no.txt index bab2c2e17d5..0ad91ef6156 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index bab2c2e17d5..0ad91ef6156 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 9434f415cb7..600ae655e87 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index ad4fc7c4e0b..0432beb6700 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/0.0/no.txt index bed4cd2f7cd..54c497605ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index bed4cd2f7cd..54c497605ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 8eeed82e72c..5d44501e1e9 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt index bb0aeddb2d7..82205434a46 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt index bed4cd2f7cd..54c497605ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index bed4cd2f7cd..54c497605ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index cdaa5474d50..0207deb900f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 1781c7972bd..c1fbe1e9931 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/0.0/no.txt index 2e63f97f977..ded1c6cd164 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 2e63f97f977..ded1c6cd164 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 588d21a7aa2..871e288be74 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt index 1061b04b307..302fce39781 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt index a60817f582a..389f5edc182 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index a60817f582a..389f5edc182 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 084eb4be55e..cdea42e7e8e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 8a6b0e60d9c..17588733ae0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/0.0/no.txt index bed4cd2f7cd..54c497605ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index bed4cd2f7cd..54c497605ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index ce6c86b8255..249bdcabe71 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt index d841a20a28d..15c21b303d8 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt index bed4cd2f7cd..54c497605ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index bed4cd2f7cd..54c497605ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 7b43980203b..4b3e53cb4c3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index d696bc0438c..3273d1c5593 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/0.0/no.txt index 2e63f97f977..ded1c6cd164 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 2e63f97f977..ded1c6cd164 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index d997de7a9d8..281249e8faf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt index 35b25482089..67c78c6d459 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt index a60817f582a..389f5edc182 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index a60817f582a..389f5edc182 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 732845f71d1..ff30207b22c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index a1f5b721c94..ddc6be3cd2c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/no.txt index 48ad2531c29..54bb88b3087 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/no.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 48ad2531c29..54bb88b3087 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 244ba25227c..d7d80d86b9b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free/5.txt index 23a750de065..ed1d6c95655 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/no.txt index a88a137b37f..cb7e601918f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/no.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index a88a137b37f..cb7e601918f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 31aa308850c..ddf30799a0f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 0685e7676ff..e1b60787d5b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/no.txt index 623ea1bcad8..c651aefa895 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 623ea1bcad8..c651aefa895 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index d9dda098fc2..ab9f2756f8f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_free/5.txt index 18ec363c774..0bb7bb3a5cf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/no.txt index bab2c2e17d5..0ad91ef6156 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index bab2c2e17d5..0ad91ef6156 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index fdd9ada939a..8121104d066 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index c4c18f63c94..55694998841 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/no.txt index 48ad2531c29..54bb88b3087 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/no.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 48ad2531c29..54bb88b3087 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 56484d1b33d..cbf1d04fe85 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_free/5.txt index 4700b390f9f..c340cc6ab16 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/no.txt index a88a137b37f..cb7e601918f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/no.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index a88a137b37f..cb7e601918f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 09af420d0c8..0d8186e9f5c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 8e38eb33435..bc718188312 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/no.txt index 623ea1bcad8..c651aefa895 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 623ea1bcad8..c651aefa895 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 97cf4722ba0..496785188a0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_free/5.txt index 7687db7df82..a84f6a6b7fd 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/no.txt index bab2c2e17d5..0ad91ef6156 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index bab2c2e17d5..0ad91ef6156 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 9434f415cb7..600ae655e87 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,13 +10,17 @@ The National Minimum Wage per hour for your age | Your actual pay | For each pay \* This figure has been rounded to the nearest penny. +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index ad4fc7c4e0b..0432beb6700 100644 --- a/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for your age | Your actual pay If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016.html b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016.html new file mode 100644 index 00000000000..4a9fa2b15e7 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016.html @@ -0,0 +1,119 @@ +<!DOCTYPE html> +<html> + <head> + <link rel="stylesheet" media="all" href="/smartanswers/application.css" /> + <link rel="stylesheet" media="print" href="/smartanswers/print.css" /> + <title>National Minimum Wage calculator for workers - GOV.UK</title> + <script src="/smartanswers/smart-answers.js" defer="defer"></script> + <meta name="robots" content="noindex"> + + </head> +<body class="mainstream"> + + + + <div id="wrapper" class="answer smart_answer"> + + +<main id="content" role="main"> + <div id="js-replaceable" class="smart-answer-questions group"> + + + <header class="page-header group"> + <div> + <h1> + National Minimum Wage calculator for workers + </h1> + </div> + </header> + + <div class="step current"> + <form action="/am-i-getting-minimum-wage/y/current_payment_april_2016" accept-charset="UTF-8" method="get"><input name="utf8" type="hidden" value="✓" /> + <div class="current-question" id="current-question"> + <div class="question"> + <h2> + Will you be in the first year of an apprenticeship on 1 April 2016? + </h2> + <div class="question-body"> + + + + + <div class=""> + + <ul class="options inline"> + <li> + <label for="response_0" class="selectable"> + <input type="radio" name="response" id="response_0" value="yes" /> + Yes + </label> + </li> + <li> + <label for="response_1" class="selectable"> + <input type="radio" name="response" id="response_1" value="no" /> + No + </label> + </li> +</ul> + + + + + </div> + </div> +</div> + + <div class="next-question"> + <input type="hidden" name="next" value="1" /> + <button type="submit" class="medium button">Next step</button> + </div> + </div> + </form> + </div> + <div class="previous-answers "> + <div class="done-questions"> + <article> + <h3 class="previous-answers-title"> + Previous answers + </h3> + <a class="start-right" href="/am-i-getting-minimum-wage">Start again</a> + <table> + <tbody> + + <tr class="section"> + <td class="previous-question-title">What would you like to check?</td> + <td class="previous-question-body"> + If you'll get the national living wage (from 1 April 2016)</td> + + <td class="link-right"> + <a href="/am-i-getting-minimum-wage/y?previous_response=current_payment_april_2016"> + Change<span class="visuallyhidden"> answer to "What would you like to check?"</span> +</a> </td> + </tr> + + </tbody> + </table> + </article> + </div> + </div> + + + + </div> + + <div class="meta-wrapper"> + <div id="report-a-problem"></div> + <div class="meta-data group"> + <div class="inner"> + <div class="print-and-modified-date group"> + <p class="modified-date">Last updated: 1 January 2015</p> + </div> + </div> +</div> + + </div> +</main> + + </div> +</body> +</html> diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/0.0/no.txt new file mode 100644 index 00000000000..54bb88b3087 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/0.0/no.txt @@ -0,0 +1,28 @@ + + +$C +You aren't getting the National Minimum Wage. +$C + +The National Minimum Wage per hour for your age | Your actual pay | For each pay period your employer owes you +- | - | - +£6.50 | £6.25 * | £4 + +\* This figure has been rounded to the nearest penny. + +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt new file mode 100644 index 00000000000..54bb88b3087 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -0,0 +1,28 @@ + + +$C +You aren't getting the National Minimum Wage. +$C + +The National Minimum Wage per hour for your age | Your actual pay | For each pay period your employer owes you +- | - | - +£6.50 | £6.25 * | £4 + +\* This figure has been rounded to the nearest penny. + +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt new file mode 100644 index 00000000000..d7d80d86b9b --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -0,0 +1,28 @@ + + +$C +You aren't getting the National Minimum Wage. +$C + +The National Minimum Wage per hour for your age | Your actual pay | For each pay period your employer owes you +- | - | - +£6.50 | £4.24 * | £36.12 + +\* This figure has been rounded to the nearest penny. + +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/0.0/yes_free/5.txt new file mode 100644 index 00000000000..ed1d6c95655 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -0,0 +1,28 @@ + + +$C +You aren't getting the National Minimum Wage. +$C + +The National Minimum Wage per hour for your age | Your actual pay | For each pay period your employer owes you +- | - | - +£6.50 | £6.48 * | £0.37 + +\* This figure has been rounded to the nearest penny. + +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/8.0/10.0/no.txt new file mode 100644 index 00000000000..cb7e601918f --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/8.0/10.0/no.txt @@ -0,0 +1,28 @@ + + +$C +You aren't getting the National Minimum Wage. +$C + +The National Minimum Wage per hour for your age | Your actual pay | For each pay period your employer owes you +- | - | - +£6.50 | £6.25 * | £6 + +\* This figure has been rounded to the nearest penny. + +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt new file mode 100644 index 00000000000..cb7e601918f --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -0,0 +1,28 @@ + + +$C +You aren't getting the National Minimum Wage. +$C + +The National Minimum Wage per hour for your age | Your actual pay | For each pay period your employer owes you +- | - | - +£6.50 | £6.25 * | £6 + +\* This figure has been rounded to the nearest penny. + +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt new file mode 100644 index 00000000000..ddf30799a0f --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -0,0 +1,28 @@ + + +$C +You aren't getting the National Minimum Wage. +$C + +The National Minimum Wage per hour for your age | Your actual pay | For each pay period your employer owes you +- | - | - +£6.50 | £4.91 * | £38.12 + +\* This figure has been rounded to the nearest penny. + +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt new file mode 100644 index 00000000000..e1b60787d5b --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -0,0 +1,28 @@ + + +$C +You aren't getting the National Minimum Wage. +$C + +The National Minimum Wage per hour for your age | Your actual pay | For each pay period your employer owes you +- | - | - +£6.50 | £6.40 * | £2.37 + +\* This figure has been rounded to the nearest penny. + +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/0.0/no.txt new file mode 100644 index 00000000000..0d42e8fe5a5 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/0.0/no.txt @@ -0,0 +1,24 @@ + + +$C +You will be getting the national living wage +$C + +The national living wage per hour for your age will be | Your actual pay +- | - +£7.20 | £18.75 + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt new file mode 100644 index 00000000000..0d42e8fe5a5 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -0,0 +1,24 @@ + + +$C +You will be getting the national living wage +$C + +The national living wage per hour for your age will be | Your actual pay +- | - +£7.20 | £18.75 + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt new file mode 100644 index 00000000000..07494966221 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -0,0 +1,24 @@ + + +$C +You will be getting the national living wage +$C + +The national living wage per hour for your age will be | Your actual pay +- | - +£7.20 | £16.74 + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/0.0/yes_free/5.txt new file mode 100644 index 00000000000..c238abd17f5 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -0,0 +1,24 @@ + + +$C +You will be getting the national living wage +$C + +The national living wage per hour for your age will be | Your actual pay +- | - +£7.20 | £18.98 + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/8.0/10.0/no.txt new file mode 100644 index 00000000000..88841e45fff --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/8.0/10.0/no.txt @@ -0,0 +1,24 @@ + + +$C +You will be getting the national living wage +$C + +The national living wage per hour for your age will be | Your actual pay +- | - +£7.20 | £10 + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt new file mode 100644 index 00000000000..88841e45fff --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -0,0 +1,24 @@ + + +$C +You will be getting the national living wage +$C + +The national living wage per hour for your age will be | Your actual pay +- | - +£7.20 | £10 + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt new file mode 100644 index 00000000000..e5fc801354b --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -0,0 +1,24 @@ + + +$C +You will be getting the national living wage +$C + +The national living wage per hour for your age will be | Your actual pay +- | - +£7.20 | £8.66 + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt new file mode 100644 index 00000000000..22cea58e15f --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -0,0 +1,24 @@ + + +$C +You will be getting the national living wage +$C + +The national living wage per hour for your age will be | Your actual pay +- | - +£7.20 | £10.15 + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/0.0/no.txt new file mode 100644 index 00000000000..54bb88b3087 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/0.0/no.txt @@ -0,0 +1,28 @@ + + +$C +You aren't getting the National Minimum Wage. +$C + +The National Minimum Wage per hour for your age | Your actual pay | For each pay period your employer owes you +- | - | - +£6.50 | £6.25 * | £4 + +\* This figure has been rounded to the nearest penny. + +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt new file mode 100644 index 00000000000..54bb88b3087 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -0,0 +1,28 @@ + + +$C +You aren't getting the National Minimum Wage. +$C + +The National Minimum Wage per hour for your age | Your actual pay | For each pay period your employer owes you +- | - | - +£6.50 | £6.25 * | £4 + +\* This figure has been rounded to the nearest penny. + +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt new file mode 100644 index 00000000000..cbf1d04fe85 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -0,0 +1,28 @@ + + +$C +You aren't getting the National Minimum Wage. +$C + +The National Minimum Wage per hour for your age | Your actual pay | For each pay period your employer owes you +- | - | - +£6.50 | -£55.92 * | £998.75 + +\* This figure has been rounded to the nearest penny. + +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/0.0/yes_free/5.txt new file mode 100644 index 00000000000..746ca5bf78b --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -0,0 +1,24 @@ + + +$C +You will be getting the national living wage +$C + +The national living wage per hour for your age will be | Your actual pay +- | - +£7.20 | £13.28 + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/8.0/10.0/no.txt new file mode 100644 index 00000000000..cb7e601918f --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/8.0/10.0/no.txt @@ -0,0 +1,28 @@ + + +$C +You aren't getting the National Minimum Wage. +$C + +The National Minimum Wage per hour for your age | Your actual pay | For each pay period your employer owes you +- | - | - +£6.50 | £6.25 * | £6 + +\* This figure has been rounded to the nearest penny. + +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt new file mode 100644 index 00000000000..cb7e601918f --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -0,0 +1,28 @@ + + +$C +You aren't getting the National Minimum Wage. +$C + +The National Minimum Wage per hour for your age | Your actual pay | For each pay period your employer owes you +- | - | - +£6.50 | £6.25 * | £6 + +\* This figure has been rounded to the nearest penny. + +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt new file mode 100644 index 00000000000..0d8186e9f5c --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -0,0 +1,28 @@ + + +$C +You aren't getting the National Minimum Wage. +$C + +The National Minimum Wage per hour for your age | Your actual pay | For each pay period your employer owes you +- | - | - +£6.50 | -£35.20 * | £1,000.75 + +\* This figure has been rounded to the nearest penny. + +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt new file mode 100644 index 00000000000..50c457706ca --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -0,0 +1,24 @@ + + +$C +You will be getting the national living wage +$C + +The national living wage per hour for your age will be | Your actual pay +- | - +£7.20 | £10.94 + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/0.0/no.txt new file mode 100644 index 00000000000..0d42e8fe5a5 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/0.0/no.txt @@ -0,0 +1,24 @@ + + +$C +You will be getting the national living wage +$C + +The national living wage per hour for your age will be | Your actual pay +- | - +£7.20 | £18.75 + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt new file mode 100644 index 00000000000..0d42e8fe5a5 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -0,0 +1,24 @@ + + +$C +You will be getting the national living wage +$C + +The national living wage per hour for your age will be | Your actual pay +- | - +£7.20 | £18.75 + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt new file mode 100644 index 00000000000..496785188a0 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -0,0 +1,28 @@ + + +$C +You aren't getting the National Minimum Wage. +$C + +The National Minimum Wage per hour for your age | Your actual pay | For each pay period your employer owes you +- | - | - +£6.50 | -£43.42 * | £798.75 + +\* This figure has been rounded to the nearest penny. + +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/0.0/yes_free/5.txt new file mode 100644 index 00000000000..814a334feb4 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -0,0 +1,24 @@ + + +$C +You will be getting the national living wage +$C + +The national living wage per hour for your age will be | Your actual pay +- | - +£7.20 | £25.78 + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/8.0/10.0/no.txt new file mode 100644 index 00000000000..88841e45fff --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/8.0/10.0/no.txt @@ -0,0 +1,24 @@ + + +$C +You will be getting the national living wage +$C + +The national living wage per hour for your age will be | Your actual pay +- | - +£7.20 | £10 + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt new file mode 100644 index 00000000000..88841e45fff --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -0,0 +1,24 @@ + + +$C +You will be getting the national living wage +$C + +The national living wage per hour for your age will be | Your actual pay +- | - +£7.20 | £10 + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt new file mode 100644 index 00000000000..600ae655e87 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -0,0 +1,28 @@ + + +$C +You aren't getting the National Minimum Wage. +$C + +The National Minimum Wage per hour for your age | Your actual pay | For each pay period your employer owes you +- | - | - +£6.50 | -£31.45 * | £910.75 + +\* This figure has been rounded to the nearest penny. + +^Your actual pay should increase to at least £7.20 per hour from 1 April 2016.^ + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt new file mode 100644 index 00000000000..49d4fe5d8b3 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -0,0 +1,24 @@ + + +$C +You will be getting the national living wage +$C + +The national living wage per hour for your age will be | Your actual pay +- | - +£7.20 | £14.69 + +If you work overtime or your employer provides you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. + +This result is an estimate. If you have any questions, call the confidential helpline. + +$C +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ +[Find out about call charges](/call-charges) +$C + +Read the guidance on [how to calculate the National Minimum Wage](/minimum-wage-different-types-work). + diff --git a/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/yes.txt b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/yes.txt new file mode 100644 index 00000000000..f540ee3f1b7 --- /dev/null +++ b/test/artefacts/am-i-getting-minimum-wage/current_payment_april_2016/yes.txt @@ -0,0 +1,6 @@ + + +You won't get the national living wage as a first year apprentice. + +You'll only get the [National Minimum Wage for an apprentice.](/apprenticeships-guide/pay-and-conditions) + diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/no.txt index 32afc72fd9b..6835a0f6723 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 734857fa1ae..64ccfa1e1c0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 61b468698c7..38f3e41200d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt index b43d35466c8..9fec7e75698 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt index 32afc72fd9b..6835a0f6723 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 734857fa1ae..64ccfa1e1c0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 8e6a1703ac4..ff449313e89 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index b63b6c29d62..a140dc56410 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/no.txt index 7daf0a5bf46..018c7201145 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index fe83a26621f..7cdccf3d3ec 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 59e0a3d814a..09ffccc5ba9 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt index c1c80472c70..37f326e5e92 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt index 8bfc591bbd7..66f6bffaa20 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index a505481eefa..1ddfe0924a0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 4a1170e1292..43640db377c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 66fd304efc3..164bd27b4dc 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/no.txt index 32afc72fd9b..6835a0f6723 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index f73cb6bb913..693f4720f58 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index ec06e06a163..2112a1a4199 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt index 994f9119034..d7991029bce 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt index 32afc72fd9b..6835a0f6723 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 373d1775006..1e74b739086 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index d5523f3abf9..d27040d43b5 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 1357c75c46c..1dd1b505e25 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/no.txt index 7daf0a5bf46..018c7201145 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index d3b5198c1e9..c7b994be6ec 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index cd35a4df8c6..bfc96ebea1b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt index c2313ec41dd..d59bbe0bf54 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt index 8bfc591bbd7..66f6bffaa20 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index cabd08e3fc3..48793f7d16b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 8acab0df002..9e563af8d01 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index be33343872d..90ca13532fb 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/no.txt index 3a98a097ecc..5cef249c33f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 19eea8e6ed2..d942a6e4eac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 24863cdbff2..957c78b93b0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt index 536c17c46c6..0f86b7feacb 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt index 3a98a097ecc..5cef249c33f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 6e2b5a073b1..9b4411371de 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 2aa87f74b82..ae4a8021b99 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 5997803364f..29cce34096d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/no.txt index 0ac68f9872c..5639b09a24d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 2960b706ba5..11f6ddc3356 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index c3de4a83cdc..624bb7d74cf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt index ef8568aa6ba..78f59e2889c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt index 871ffd73bd4..8f255977516 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index e77ab2c8fca..a354806605c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 977ea75f4e0..cbc40f11138 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index fd830a869cb..456d27fde03 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/no.txt index 3a98a097ecc..5cef249c33f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index c348c652912..d529d07cb59 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 5937a253edd..4415fd32b2b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt index f318dd1f836..619d14c2da1 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt index 3a98a097ecc..5cef249c33f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 8662faa87fb..d64a5d11da4 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index eca2d4a730a..10511e376ca 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 45b589a8e60..4371678c6c6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/no.txt index 0ac68f9872c..5639b09a24d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index e3f082a04ab..e4024becfbd 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 768a6b2fc65..523ad614421 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt index 2c17531e8ac..b505ca7f147 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt index 871ffd73bd4..8f255977516 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index cc6232296b0..fbdcf02c99d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 238ac7fbd90..30602dd8c0f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 83fc8444088..e28734b5e6d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt index 49077a4ca34..87e29786641 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index c2839c5c200..e6a0f4adf3f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index ce064eed4f0..6166cb3a6ee 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt index 1e393c96c62..3a8433b8458 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt index 49077a4ca34..87e29786641 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 00d9e3d36b8..17bc76a43f6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 78664407afb..0dfea9374f3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index ce85535b303..71eacb9230c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt index 2a862e34740..c7675c1d27e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index f2e7d5f07a1..3bc894c7f7a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 0d88d1e29e1..cff85f0044e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt index 0247cdeb0a0..913f250c104 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt index 710405d7570..1cddd4096c4 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 7bfd534c3fb..1497f3311f7 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 0c11859ebed..2639e29ac8c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 2bf474dac86..78c22396a9b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt index 49077a4ca34..87e29786641 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index cf4cbe17078..9fc4e850f19 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 00c1269eeeb..1f2016b937e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt index 6cb0af5aa01..0d3860ad95a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt index 49077a4ca34..87e29786641 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index de72194be8e..ffd1f5415dd 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index d1d0fdc4ecd..0d1b50574b8 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 4d05d085e97..007ca5358e0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt index 2a862e34740..c7675c1d27e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 9658495a260..46f166c92e6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 1d802a45ae5..6074ead8943 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt index 72f02b216bf..e96130e0986 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt index 710405d7570..1cddd4096c4 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index e086c79affc..a451d573161 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 15060e591ce..13366bffb2a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 03f0021d898..7da55d2c52d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt index 49077a4ca34..87e29786641 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index c2839c5c200..e6a0f4adf3f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index ce064eed4f0..6166cb3a6ee 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt index 1e393c96c62..3a8433b8458 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt index 49077a4ca34..87e29786641 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 00d9e3d36b8..17bc76a43f6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 78664407afb..0dfea9374f3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index ce85535b303..71eacb9230c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt index 2a862e34740..c7675c1d27e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index f2e7d5f07a1..3bc894c7f7a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 0d88d1e29e1..cff85f0044e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt index 0247cdeb0a0..913f250c104 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt index 710405d7570..1cddd4096c4 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 7bfd534c3fb..1497f3311f7 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 0c11859ebed..2639e29ac8c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 2bf474dac86..78c22396a9b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt index 49077a4ca34..87e29786641 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index cf4cbe17078..9fc4e850f19 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 00c1269eeeb..1f2016b937e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt index 6cb0af5aa01..0d3860ad95a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt index 49077a4ca34..87e29786641 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index de72194be8e..ffd1f5415dd 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index d1d0fdc4ecd..0d1b50574b8 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 4d05d085e97..007ca5358e0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt index 2a862e34740..c7675c1d27e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 9658495a260..46f166c92e6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 1d802a45ae5..6074ead8943 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt index 72f02b216bf..e96130e0986 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt index 710405d7570..1cddd4096c4 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index e086c79affc..a451d573161 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 15060e591ce..13366bffb2a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 03f0021d898..7da55d2c52d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/no.txt index bd9a3362705..843f237fcd1 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 3cf7842dbfb..1938b63fcae 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 3561d8a3c56..96f0346f593 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt index 9d837650109..b0931ba8fd9 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt index bd9a3362705..843f237fcd1 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index ca9ff6bbfa8..32a96d09c33 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 4984a06b28f..a7d40146432 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 4872b29117f..2c1171c3d8e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/no.txt index 97c8bb77a61..edf73deb8c7 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 4e65e030cd2..b9d88e09738 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 8d5cf9f28e9..5d040059cc0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt index c43f847e00e..52285f7bddf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt index 1794b8defad..d9af3574737 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 745b5be065b..567f3b5d51b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 65738e76009..d4a631a2a5b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index e2037f0a436..0e45f97bca0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/no.txt index bd9a3362705..843f237fcd1 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 2068a141df8..b41ee1b30ec 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index cb721a19d5b..e96b71f5066 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt index 2ee358d3718..be2a51c642e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt index bd9a3362705..843f237fcd1 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index a037d96598e..233268a9379 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index f3b78f3ebc9..2fc0669cbac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 16fc2b930bd..4689e02c140 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/no.txt index 97c8bb77a61..edf73deb8c7 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index c4fb75eb195..7832fecafca 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index dceb2f9ac14..0992cc2a801 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt index 01063283833..e208affeca7 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt index 1794b8defad..d9af3574737 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 092700203a0..650252ac5b6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 2279e1a35e5..fe0f19b501e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 497af1759e2..6cd3d820e19 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt index 49838a7835c..36ea456ffef 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 2aee2a1e3ed..bc8ed0eff96 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 3c3b47cc051..df2a0e65246 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt index 57b9be3032d..b298d49f924 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt index 49838a7835c..36ea456ffef 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 2aee2a1e3ed..bc8ed0eff96 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index cf3850f5366..961a1951b93 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index c4e93b6050e..d5f6e7857ce 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt index d6efda94866..fffddbdfadf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 222f2e0c76c..2087c6b7d9c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 2b88b68ad24..8a8cb8fff03 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt index bf9c4f0ee2d..4fd3f71be3c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt index 1c5d507dae5..32e26d5918f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 0c4964380f6..92bf73010fb 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 754b139092d..099dbaf42c5 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 737c1247796..52a57aec46d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt index 49838a7835c..36ea456ffef 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 3d98a79ff95..58d5ae63f99 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index dc4dde9175b..8b5943861d7 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt index 742a956926f..b58ee818908 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt index 49838a7835c..36ea456ffef 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index f37d6a0d127..4a0ad526c36 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 0ba7fc81cf7..4fb30251841 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 787ef5930b9..60c4a4e9cd3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt index d6efda94866..fffddbdfadf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index d98489a5c75..cc21eacf481 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index ecf01d9607e..3a9276300cf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt index dff683cd09e..1ed678c0640 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt index 1c5d507dae5..32e26d5918f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index c66e72907e7..41035bf89a2 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 04f570a2574..39b83109108 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index da3c7d4e5d5..876bf256f53 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt index 49838a7835c..36ea456ffef 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 2aee2a1e3ed..bc8ed0eff96 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 3c3b47cc051..df2a0e65246 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt index 57b9be3032d..b298d49f924 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt index 49838a7835c..36ea456ffef 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 2aee2a1e3ed..bc8ed0eff96 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index cf3850f5366..961a1951b93 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index c4e93b6050e..d5f6e7857ce 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt index d6efda94866..fffddbdfadf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 222f2e0c76c..2087c6b7d9c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 2b88b68ad24..8a8cb8fff03 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt index bf9c4f0ee2d..4fd3f71be3c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt index 1c5d507dae5..32e26d5918f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 0c4964380f6..92bf73010fb 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 754b139092d..099dbaf42c5 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 737c1247796..52a57aec46d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt index 49838a7835c..36ea456ffef 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 3d98a79ff95..58d5ae63f99 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index dc4dde9175b..8b5943861d7 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt index 742a956926f..b58ee818908 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt index 49838a7835c..36ea456ffef 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index f37d6a0d127..4a0ad526c36 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 0ba7fc81cf7..4fb30251841 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 787ef5930b9..60c4a4e9cd3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt index d6efda94866..fffddbdfadf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index d98489a5c75..cc21eacf481 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index ecf01d9607e..3a9276300cf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt index dff683cd09e..1ed678c0640 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt index 1c5d507dae5..32e26d5918f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index c66e72907e7..41035bf89a2 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 04f570a2574..39b83109108 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index da3c7d4e5d5..876bf256f53 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/no.txt index ebad80bc404..7cf91f18f62 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 2df40eda31f..32d2dcb7578 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index ad23c4d3cde..d71fbbb7972 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt index 5dc9784ad47..bad302f3621 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt index ebad80bc404..7cf91f18f62 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 2df40eda31f..32d2dcb7578 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 4e6c7009dc4..dd22425975e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index b113bbb193e..a0a1b3b6344 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/no.txt index dd28a1e0cb6..077df4bdf75 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 2528d9cc851..2db83f0c47c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 7448b80a3e2..142bba3962f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt index 2520ce382a3..49f05837b53 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt index be73bb1d03b..2d7c754b6e8 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index af36f53ea00..44cdc01de72 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index ae0019b737c..b60693d944a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 81a093d379f..fbd2fe097d3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/no.txt index ebad80bc404..7cf91f18f62 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 32f471084b5..e68c4b139a5 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 073ace92d55..a857a02a6a4 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt index 2e585f9fbbb..8e0eebd29e2 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt index ebad80bc404..7cf91f18f62 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index cacd6b47ba3..59eae18663a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 9045b24307a..69b161cf56e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 2478cd4c96b..bf9f1ecb519 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/no.txt index dd28a1e0cb6..077df4bdf75 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 743f7c915ec..16fe52099c9 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 8cfe7d3a201..007232080bf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt index ef0d9dd3faa..bcce28a5ca3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt index be73bb1d03b..2d7c754b6e8 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 2f57da39ec3..7a3d3d892ec 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index ffd83e0e28d..0efa8e1022c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index a649e11e896..12c75f3c171 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt index 6f76b06bc02..2b0583399a3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 88eeb97ad8c..b828bbd0399 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 934cc0a9ece..2f7bb0980a6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt index 41c233f816b..b2f312fc534 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt index 6f76b06bc02..2b0583399a3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 88eeb97ad8c..b828bbd0399 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 42bfe9ca108..a0cf403f6ea 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 15ffcf8a6ec..2b8dd4216f0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt index f72773f2d00..4113a9e8974 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index aa247512220..59d06b2b8c7 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index edb7b0f6ae2..395ba2f6b3d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt index e1b868e6a2c..b36e8086851 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt index 82d43f689f9..38d6a28f6bf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 56129e1824a..daa8e207f6a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 2eaf747d649..178681d82b9 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 14ac087f9ab..bfd83e89745 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt index 6f76b06bc02..2b0583399a3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index d8d8fdd640f..ca761d50242 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 87dfd51620d..11fba923804 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt index f086e2d8410..e4b2da6897b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt index 6f76b06bc02..2b0583399a3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 4f824d335c8..6657e1665f4 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index c5dc74748fb..9447d1753ed 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 7fc3fc6b0ea..bfb444c12ec 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt index f72773f2d00..4113a9e8974 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 2dcee7c9f38..3eae7e8d716 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 5c548629b3f..0d4470c44b3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt index 490b22ec7cb..6a7621e7bcb 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt index 82d43f689f9..38d6a28f6bf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index eaa1bc31082..c9b73ddc246 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index acae8e15ce6..3c30e91bc97 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index f67ba02efcd..0d00fd7e5dd 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt index 6f76b06bc02..2b0583399a3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 88eeb97ad8c..b828bbd0399 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 934cc0a9ece..2f7bb0980a6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt index 41c233f816b..b2f312fc534 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt index 6f76b06bc02..2b0583399a3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 88eeb97ad8c..b828bbd0399 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 42bfe9ca108..a0cf403f6ea 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 15ffcf8a6ec..2b8dd4216f0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt index f72773f2d00..4113a9e8974 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index aa247512220..59d06b2b8c7 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index edb7b0f6ae2..395ba2f6b3d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt index e1b868e6a2c..b36e8086851 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt index 82d43f689f9..38d6a28f6bf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 56129e1824a..daa8e207f6a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 2eaf747d649..178681d82b9 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 14ac087f9ab..bfd83e89745 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt index 6f76b06bc02..2b0583399a3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index d8d8fdd640f..ca761d50242 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 87dfd51620d..11fba923804 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt index f086e2d8410..e4b2da6897b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt index 6f76b06bc02..2b0583399a3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 4f824d335c8..6657e1665f4 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index c5dc74748fb..9447d1753ed 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 7fc3fc6b0ea..bfb444c12ec 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt index f72773f2d00..4113a9e8974 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 2dcee7c9f38..3eae7e8d716 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 5c548629b3f..0d4470c44b3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt index 490b22ec7cb..6a7621e7bcb 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt index 82d43f689f9..38d6a28f6bf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index eaa1bc31082..c9b73ddc246 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index acae8e15ce6..3c30e91bc97 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index f67ba02efcd..0d00fd7e5dd 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/no.txt index 212fa8b28c7..35557a0a8a6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index c4c1fde36cb..c801bed59c8 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 795e16ca688..045d936fa7b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt index b1701c28894..30312717745 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt index 212fa8b28c7..35557a0a8a6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index c4c1fde36cb..c801bed59c8 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index ea736917578..d78b278972e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index ff558466672..b151c251f25 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/no.txt index ca271a60ff2..bebadfbdc60 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 296d001b4ff..4bd7def1868 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index ee9cbad235e..fd3220b712f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt index 2b597e455ae..324388ba6ce 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt index cd2a36c1bc5..56489d67b16 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 5a43ca89c0f..ab88390945b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index bf9b3a07867..ce3e87d280a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index c5c9ae21067..f0ef2515c2d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/no.txt index 212fa8b28c7..35557a0a8a6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 5fa42821ac5..5c8403950ac 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 5cef494137c..6197ba813b4 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt index cbc209ecf6d..e1ba74a3b00 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt index 212fa8b28c7..35557a0a8a6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index c61c777e53a..514fe980441 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 9030d17179c..d769dc0d82c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 00dbbbc8beb..66d7f587870 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/no.txt index ca271a60ff2..bebadfbdc60 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 73d10597b3c..80be64418e0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 6a71f276ec2..4a29bc5f5a6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt index 4c62f69a658..cfca1e52caf 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt index cd2a36c1bc5..56489d67b16 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 1d3b7300933..0045b0d1f13 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index d135cce0ef7..b855ff1460d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 6fb48e9c2a4..a0654cc2772 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt index cdcfdcb24e9..14a3875368a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index cdcfdcb24e9..14a3875368a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 178e820f2f0..8142ae59f5a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt index 7f5d7e490ce..a2ed4115ef5 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt index cdcfdcb24e9..14a3875368a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index cdcfdcb24e9..14a3875368a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 3ae86c39dce..8064c636c20 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index c0521457569..a5dd6741e3c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt index edcebf6f6fe..2dd76156028 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index edcebf6f6fe..2dd76156028 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 498f17d8283..470a5d69742 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt index 8d5c5e969fa..6b4fcc6cf6c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt index 18233e70ee7..f11e9754cd3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 18233e70ee7..f11e9754cd3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index b70c2a0b902..88875d0d94a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 3d20688c4fd..6202d4d8ac0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt index cdcfdcb24e9..14a3875368a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index a77bffad036..8b439d6605f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 139896eb661..f5c6e7c3b43 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt index 9596378c3ea..d247e695e11 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt index cdcfdcb24e9..14a3875368a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index dc6b3c396b3..873a507b4b4 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 0914ac4023b..5ca53a28f59 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index db0246af091..2aef2cd6751 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt index edcebf6f6fe..2dd76156028 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 32c4915cdf9..a9e28191898 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 6f2de37a67a..c4be2ae0845 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt index a5ae1d8d9d8..bd173ebab2e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt index 18233e70ee7..f11e9754cd3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index e53f4027feb..b9cc0d26670 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index beeecb56136..f6f6bd05667 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 6038f2cdd6c..ef9853331c3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt index cdcfdcb24e9..14a3875368a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index cdcfdcb24e9..14a3875368a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 178e820f2f0..8142ae59f5a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt index 7f5d7e490ce..a2ed4115ef5 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt index cdcfdcb24e9..14a3875368a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index cdcfdcb24e9..14a3875368a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 3ae86c39dce..8064c636c20 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index c0521457569..a5dd6741e3c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt index edcebf6f6fe..2dd76156028 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index edcebf6f6fe..2dd76156028 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 498f17d8283..470a5d69742 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt index 8d5c5e969fa..6b4fcc6cf6c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt index 18233e70ee7..f11e9754cd3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 18233e70ee7..f11e9754cd3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index b70c2a0b902..88875d0d94a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 3d20688c4fd..6202d4d8ac0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt index cdcfdcb24e9..14a3875368a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index a77bffad036..8b439d6605f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 139896eb661..f5c6e7c3b43 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt index 9596378c3ea..d247e695e11 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt index cdcfdcb24e9..14a3875368a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index dc6b3c396b3..873a507b4b4 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 0914ac4023b..5ca53a28f59 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index db0246af091..2aef2cd6751 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt index edcebf6f6fe..2dd76156028 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 32c4915cdf9..a9e28191898 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 6f2de37a67a..c4be2ae0845 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt index a5ae1d8d9d8..bd173ebab2e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt index 18233e70ee7..f11e9754cd3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index e53f4027feb..b9cc0d26670 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index beeecb56136..f6f6bd05667 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 6038f2cdd6c..ef9853331c3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/no.txt index 6dc24d668c3..2a383d78d6e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 226b3e94762..d83c9ac3c13 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 2b0e889f19b..70ec7ab8096 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt index 1ab51d9392d..3a0685a5e89 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt index 5b71e2e28d2..d9a46007895 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 035c1c5f88c..007114e3685 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 4abaa6d2124..2ab5af0bb8f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index adba67019d6..f294e390f0e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/no.txt index 3b8977ae456..f1876def03c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 3b8977ae456..f1876def03c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 98736e70d8b..6522086e265 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt index aa032c31add..798ac6caa4e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt index 84e40870cac..6a8f17a6f33 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 84e40870cac..6a8f17a6f33 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 8c7f3ca2e45..c67cd84bf40 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 97b6a4be016..a33daca1ca5 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/no.txt index 6dc24d668c3..2a383d78d6e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index d488f6d918e..e0e41629083 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index d0be5d83318..d78cccd9702 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt index d205c256a34..679a0039e17 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt index 5b71e2e28d2..d9a46007895 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 1d5e2da465f..2257da7f6cd 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 8672296e22d..fe3c4c8cdfc 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index ec4932c55b4..09f2810c7b1 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/no.txt index 3b8977ae456..f1876def03c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 0ab42edb414..ae63e718470 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index e0a2ef8aa4b..98286186c4e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt index 180c7ec2392..1c8cae5c212 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt index 84e40870cac..6a8f17a6f33 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 8f92da61c85..b04d3997b21 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 8fed3de5938..c9967f22b7f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index c99c1a50259..309bd386f48 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt index 711fc9ed33c..36142e1cf8d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 711fc9ed33c..36142e1cf8d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 6021c21c709..18cd97fe69e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt index 5de6c613c32..13dce7fdd3d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt index 711fc9ed33c..36142e1cf8d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 711fc9ed33c..36142e1cf8d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index fd8bfeb5481..f74034f4c7a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 6700c8c8125..efdf4a4035f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt index 816c92e208f..1a6457cf788 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 816c92e208f..1a6457cf788 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 8354bb444d5..966bb8fa397 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt index 9497228abd5..0be86d8c2fa 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt index d5e79b59b00..969593d45a6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index d5e79b59b00..969593d45a6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index d0426f884be..300c5aa6c5c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index be8b5df496b..6c5a0694df0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt index 711fc9ed33c..36142e1cf8d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 711fc9ed33c..36142e1cf8d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 837aa53ff0c..a35561bd8ad 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt index 7d87aed42da..141c2339656 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt index 711fc9ed33c..36142e1cf8d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 711fc9ed33c..36142e1cf8d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index a27ae241717..2b5eb54f393 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index ea7132c2151..c7030a38407 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt index 816c92e208f..1a6457cf788 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 816c92e208f..1a6457cf788 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 992ad5f6055..d2dc3d99cf5 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt index 3c05ce2d5ed..fa2ec972790 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt index d5e79b59b00..969593d45a6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index d5e79b59b00..969593d45a6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index e470a0e5581..927a9434633 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index bd1b1460c1e..889b9dc1b34 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt index 711fc9ed33c..36142e1cf8d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 711fc9ed33c..36142e1cf8d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 6021c21c709..18cd97fe69e 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt index 5de6c613c32..13dce7fdd3d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt index 711fc9ed33c..36142e1cf8d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 711fc9ed33c..36142e1cf8d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index fd8bfeb5481..f74034f4c7a 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 6700c8c8125..efdf4a4035f 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt index 816c92e208f..1a6457cf788 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 816c92e208f..1a6457cf788 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 8354bb444d5..966bb8fa397 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt index 9497228abd5..0be86d8c2fa 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt index d5e79b59b00..969593d45a6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index d5e79b59b00..969593d45a6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index d0426f884be..300c5aa6c5c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index be8b5df496b..6c5a0694df0 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt index 711fc9ed33c..36142e1cf8d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 711fc9ed33c..36142e1cf8d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 837aa53ff0c..a35561bd8ad 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt index 7d87aed42da..141c2339656 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt index 711fc9ed33c..36142e1cf8d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 711fc9ed33c..36142e1cf8d 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index a27ae241717..2b5eb54f393 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index ea7132c2151..c7030a38407 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt index 816c92e208f..1a6457cf788 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 816c92e208f..1a6457cf788 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 992ad5f6055..d2dc3d99cf5 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt index 3c05ce2d5ed..fa2ec972790 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt index d5e79b59b00..969593d45a6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index d5e79b59b00..969593d45a6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index e470a0e5581..927a9434633 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index bd1b1460c1e..889b9dc1b34 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/no.txt index 9ebeabc8054..b01cf01267b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 9ebeabc8054..b01cf01267b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index c985edf6f57..57e5051e271 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt index d8b8fddbf61..de4540d4b76 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt index 0dc37b4d622..f0df62924df 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 0dc37b4d622..f0df62924df 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index e06a3842f4c..c7499558769 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index b7e99f8f308..ebc87dba2fd 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/no.txt index 1aae0d887a3..6e8aa9119a3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 1aae0d887a3..6e8aa9119a3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index a3864a641e4..04b2c65d1c9 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt index 5eb21957c9b..18ee3a661f5 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt index 5cfbf11c1ef..0735a2ee5ff 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 5cfbf11c1ef..0735a2ee5ff 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index c67124852a6..f62fd75e7c4 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index c9bbf237465..03b5184b5aa 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/no.txt index 9ebeabc8054..b01cf01267b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 9ebeabc8054..b01cf01267b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index f6e73256efd..fbeb67188c3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt index 3e511258894..38db8be34d3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt index 0dc37b4d622..f0df62924df 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 0dc37b4d622..f0df62924df 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 46a9456dbf9..c72a4d6cb9c 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 6758d2eef75..48bd9ecd9d4 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/no.txt index 1aae0d887a3..6e8aa9119a3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 1aae0d887a3..6e8aa9119a3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index a6bd83285ca..756b1cf3f34 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt index 9246fbee081..3ba285e4ba3 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt index 5cfbf11c1ef..0735a2ee5ff 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 5cfbf11c1ef..0735a2ee5ff 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 63d9db8f536..0b47574ee2b 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay | For each pay This calculation includes an additional amount you’re entitled to by law for past payments. If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 35a4751d9b8..ebd3285ea90 100644 --- a/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/am-i-getting-minimum-wage/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | Your actual pay If you worked overtime or your employer provided you with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/am-i-getting-minimum-wage/y.html b/test/artefacts/am-i-getting-minimum-wage/y.html index c5d62a13f6d..2f049be8cd6 100644 --- a/test/artefacts/am-i-getting-minimum-wage/y.html +++ b/test/artefacts/am-i-getting-minimum-wage/y.html @@ -54,6 +54,12 @@ <h2> If an employer owes you past payments (before October 2015) </label> </li> + <li> + <label for="response_2" class="selectable"> + <input type="radio" name="response" id="response_2" value="current_payment_april_2016" /> + If you'll get the national living wage (from 1 April 2016) + </label> + </li> </ul> diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/no.txt index d91327569a1..fddc591e73e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index d91327569a1..fddc591e73e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index ac1c38ed606..a4154a759c9 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_free/5.txt index b82602cb07b..af100a99534 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/no.txt index d91327569a1..fddc591e73e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index d91327569a1..fddc591e73e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index ae5793b1c3d..6d63538d964 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 4054fb9cb96..d3c97706d5f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/no.txt index 4bcaa6336fe..4113db9703d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 4bcaa6336fe..4113db9703d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 4556753a8bd..690c5489d53 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_free/5.txt index 5657e3d6d1f..70099c9e796 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/no.txt index 2c4f2a3f75a..a9c7971ddb1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 2c4f2a3f75a..a9c7971ddb1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index e22c20e4420..71dfa8bc6e7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 4383162ec58..ab7090b2c3f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/no.txt index d91327569a1..fddc591e73e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index d91327569a1..fddc591e73e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index d683b0c1042..0a298b8a6d0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_free/5.txt index 14249935808..6cb93b46021 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/no.txt index d91327569a1..fddc591e73e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index d91327569a1..fddc591e73e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 0edc0ddc65e..d658e1b86ba 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 5fa3a5679fc..34a8813bf7f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/no.txt index 4bcaa6336fe..4113db9703d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 4bcaa6336fe..4113db9703d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 67fa4f32b79..58899d9594f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_free/5.txt index 057b8dec513..2f447c97dd7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/no.txt index 2c4f2a3f75a..a9c7971ddb1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 2c4f2a3f75a..a9c7971ddb1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 008549e4ed4..f72d753002c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_free/5.txt index a7f5fe533ab..6c8efb07079 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_first_year/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/no.txt index 17ea8ee4d9f..5036304f698 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 17ea8ee4d9f..5036304f698 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index bc97e7ed4e9..612d8ed70ee 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_free/5.txt index c19b172436e..b8a01cfd27f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/no.txt index 26f5fe23d6a..84695d7d1d2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 26f5fe23d6a..84695d7d1d2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index cf8b1d559fd..d6b91d6998b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 8f784512a79..bf3a4f8a728 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/no.txt index a241213bb27..b66fa4ad85a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index a241213bb27..b66fa4ad85a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index d14f9e795af..03fb181e6fc 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_free/5.txt index 4d72ae3c5fa..ee668385254 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/no.txt index 633b824e565..241235cdc09 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 633b824e565..241235cdc09 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 6db5fd24bfc..b552e4b714d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 6c62350e450..55b9e49251e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/no.txt index 17ea8ee4d9f..5036304f698 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 17ea8ee4d9f..5036304f698 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 3afe35892cc..fcd56038863 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_free/5.txt index 03044974414..1064d2ca9c0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/no.txt index 26f5fe23d6a..84695d7d1d2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 26f5fe23d6a..84695d7d1d2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 857543273b2..82e57d04d8e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index b371b168a3a..d989fb2fec1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/no.txt index a241213bb27..b66fa4ad85a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index a241213bb27..b66fa4ad85a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index ae54c94805d..7060be8a79c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_free/5.txt index 2ac0449a85f..4a0232ddcec 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/no.txt index 633b824e565..241235cdc09 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 633b824e565..241235cdc09 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index c6a37419d79..2a94c012a88 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 2f8aa9468d0..76b007b8591 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_over_19_second_year_onwards/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/0.0/no.txt index d91327569a1..fddc591e73e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index d91327569a1..fddc591e73e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index ac1c38ed606..a4154a759c9 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt index b82602cb07b..af100a99534 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt index d91327569a1..fddc591e73e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index d91327569a1..fddc591e73e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index ae5793b1c3d..6d63538d964 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 4054fb9cb96..d3c97706d5f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/0.0/no.txt index 4bcaa6336fe..4113db9703d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 4bcaa6336fe..4113db9703d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 4556753a8bd..690c5489d53 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt index 5657e3d6d1f..70099c9e796 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt index 2c4f2a3f75a..a9c7971ddb1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 2c4f2a3f75a..a9c7971ddb1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index e22c20e4420..71dfa8bc6e7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 4383162ec58..ab7090b2c3f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/0.0/no.txt index d91327569a1..fddc591e73e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index d91327569a1..fddc591e73e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index d683b0c1042..0a298b8a6d0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt index 14249935808..6cb93b46021 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt index d91327569a1..fddc591e73e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index d91327569a1..fddc591e73e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 0edc0ddc65e..d658e1b86ba 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 5fa3a5679fc..34a8813bf7f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/0.0/no.txt index 4bcaa6336fe..4113db9703d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 4bcaa6336fe..4113db9703d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 67fa4f32b79..58899d9594f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt index 057b8dec513..2f447c97dd7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt index 2c4f2a3f75a..a9c7971ddb1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 2c4f2a3f75a..a9c7971ddb1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 008549e4ed4..f72d753002c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index a7f5fe533ab..6c8efb07079 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/no.txt index 17ea8ee4d9f..5036304f698 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 17ea8ee4d9f..5036304f698 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index bc97e7ed4e9..612d8ed70ee 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free/5.txt index c19b172436e..b8a01cfd27f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/no.txt index 26f5fe23d6a..84695d7d1d2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 26f5fe23d6a..84695d7d1d2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index cf8b1d559fd..d6b91d6998b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 8f784512a79..bf3a4f8a728 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/no.txt index a241213bb27..b66fa4ad85a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index a241213bb27..b66fa4ad85a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index d14f9e795af..03fb181e6fc 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_free/5.txt index 4d72ae3c5fa..ee668385254 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/no.txt index 633b824e565..241235cdc09 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 633b824e565..241235cdc09 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 6db5fd24bfc..b552e4b714d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 6c62350e450..55b9e49251e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/no.txt index 17ea8ee4d9f..5036304f698 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 17ea8ee4d9f..5036304f698 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 3afe35892cc..fcd56038863 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_free/5.txt index 03044974414..1064d2ca9c0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/no.txt index 26f5fe23d6a..84695d7d1d2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 26f5fe23d6a..84695d7d1d2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 857543273b2..82e57d04d8e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index b371b168a3a..d989fb2fec1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/no.txt index a241213bb27..b66fa4ad85a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index a241213bb27..b66fa4ad85a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index ae54c94805d..7060be8a79c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_free/5.txt index 2ac0449a85f..4a0232ddcec 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/no.txt index 633b824e565..241235cdc09 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/no.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 633b824e565..241235cdc09 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index c6a37419d79..2a94c012a88 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 2f8aa9468d0..76b007b8591 100644 --- a/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/current_payment/not_an_apprentice/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -10,11 +10,13 @@ The National Minimum Wage per hour for the worker’s age | The worker’s actua If the worker works overtime or you provide them with [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/no.txt index d7860b668e9..beaae5f57e8 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 0e208e311ac..40b67ea0dd1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index b0797dbf4ba..df4bc03df39 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt index 36576f0154b..599aba1bb4d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt index d7860b668e9..beaae5f57e8 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 0e208e311ac..40b67ea0dd1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index f4588639649..555ee3570a1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 5d7adb10535..75303f57381 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/no.txt index d46cbdd478b..4a22aaf5f18 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index bdc8bb7274f..45033b0797f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 7ad5167052b..8b37fd78e4d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt index 9ab8a7e6c90..111dcd7d6e2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt index c82063d4c8c..548d6abb4a1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index c3423c00f1c..b8d83f175fe 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 9992b922f78..f841f00b90b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index cf446ba5ea8..226c23a76b9 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/no.txt index d7860b668e9..beaae5f57e8 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 09f5824c53f..00f215df789 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index c68da4fc368..d01bdc74113 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt index 0d5bd239703..368a352bbb2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt index d7860b668e9..beaae5f57e8 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 49dc41ffd38..692fcafd93c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 7afddf38ec3..0d14c47472e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index a82bbdb77b0..aeb1d6505eb 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/no.txt index d46cbdd478b..4a22aaf5f18 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 55961c5af41..f7403aadb60 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 74cba6ac001..63bb95a4e32 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt index 8d9cfdf573e..2211fe585de 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt index c82063d4c8c..548d6abb4a1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 783877c56ea..2b358c4049e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index ed2d14fd4f1..cedde3bc422 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index f40d7583bd4..dd48b7166f6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2008-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/no.txt index 6bff86b9c47..fd03064f577 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 9fada63603e..17c61b8ad16 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 9942f0c687d..7c479d27dc3 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt index a5aad62401d..fa0f72a47df 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt index 6bff86b9c47..fd03064f577 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index dfa6df1bc3d..070652fb03c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index a2af0391ad7..2319a825430 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index c00ccd0aa29..b57b2c5c5b5 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/no.txt index 571f6a0385b..317662c8039 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index d8ba712fee8..0a752d6804b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index aa64fe0c06b..b591b028172 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt index 6e0f97306d6..bfb665cf2c7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt index 890e08adb1d..66f245b2fd2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 7ecec99e0bd..0b54b22e21a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 4841403d6bc..645d6c01089 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index a1e8c700da7..044bdf7e388 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/no.txt index 6bff86b9c47..fd03064f577 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 50d13c7769d..77d255f5cb6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index ee254bdf911..dc3d81c3dd7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt index 930999c2588..fe125d433b7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt index 6bff86b9c47..fd03064f577 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 862459fc0e7..a9e784fe5d1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index bd72331467f..8aa843dc1d3 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 3d30e6300c5..3d02d07a4b7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/no.txt index 571f6a0385b..317662c8039 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index d5ad9289c44..4bc3073cf10 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 2665b484760..dfe89c41d19 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt index d8797953eca..884c5a1b7fe 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt index 890e08adb1d..66f245b2fd2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 87d941de724..a7b72ae42a2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 2f400e50c05..09c20b71524 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 4b42cb01097..4877f484dd1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2009-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt index eb902e0b1be..2f6b35814b7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 0e618561790..d3f64495252 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 17c49952718..367f1791434 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt index 790b9b1e43c..642bb46d727 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt index eb902e0b1be..2f6b35814b7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 0822cc9dd8e..a29d504b7a6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 12bbcabd99f..afea036d59d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 2553c25581b..978923ddcc5 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt index ded250d8c39..4404fb1d679 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 395dd56420d..20e8cb7e3d9 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 2a551cb5a25..a054b18d141 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt index c51a2a0fa33..07d7765358f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt index 1924ccb9720..8bae9340d9b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 08cc2de915a..be6d27625d2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index ec803454772..d67c317d95c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 06306a93de5..e8d9da7b9af 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt index eb902e0b1be..2f6b35814b7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 8a2e757c079..1b0caa5d10f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index e0748eadd4f..51ec36fe8d1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt index 353d4b3b9f8..ad1a4b18d20 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt index eb902e0b1be..2f6b35814b7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index d0064b39bde..deff6888e90 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 6beaf762010..0b5e6f07f7a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 567e6db9100..85bf4891ce1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt index ded250d8c39..4404fb1d679 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 3bfdb59330f..32f53662e28 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 5beeeca2f51..77d1e799ef3 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt index b5f3dba1263..577d5345fff 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt index 1924ccb9720..8bae9340d9b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index dfd246ada86..06e4175ba47 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 2284332ef8c..d6491f22766 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index e6377944e0e..4e17c12a0a0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt index eb902e0b1be..2f6b35814b7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 0e618561790..d3f64495252 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 17c49952718..367f1791434 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt index 790b9b1e43c..642bb46d727 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt index eb902e0b1be..2f6b35814b7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 0822cc9dd8e..a29d504b7a6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 12bbcabd99f..afea036d59d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 2553c25581b..978923ddcc5 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt index ded250d8c39..4404fb1d679 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 395dd56420d..20e8cb7e3d9 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 2a551cb5a25..a054b18d141 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt index c51a2a0fa33..07d7765358f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt index 1924ccb9720..8bae9340d9b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 08cc2de915a..be6d27625d2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index ec803454772..d67c317d95c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 06306a93de5..e8d9da7b9af 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt index eb902e0b1be..2f6b35814b7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 8a2e757c079..1b0caa5d10f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index e0748eadd4f..51ec36fe8d1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt index 353d4b3b9f8..ad1a4b18d20 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt index eb902e0b1be..2f6b35814b7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index d0064b39bde..deff6888e90 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 6beaf762010..0b5e6f07f7a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 567e6db9100..85bf4891ce1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt index ded250d8c39..4404fb1d679 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 3bfdb59330f..32f53662e28 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 5beeeca2f51..77d1e799ef3 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt index b5f3dba1263..577d5345fff 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt index 1924ccb9720..8bae9340d9b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index dfd246ada86..06e4175ba47 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 2284332ef8c..d6491f22766 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index e6377944e0e..4e17c12a0a0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/no.txt index 06e6f277684..a87cd90a494 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 169ab315d6f..c22e9f1c65a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 4ae25ac2748..0dfceffd3ae 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt index 768b61aacb6..b4636c4b2a9 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt index 06e6f277684..a87cd90a494 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index bef683e801f..4b68737a670 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index d46b61f3c9f..d162559e999 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index e08b5b9f1be..4c878755571 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/no.txt index f26b839f381..7ce9d7bce66 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index f4c87eb67ba..3e4fe64a9be 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 1603172c2f6..0ade934c9be 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt index 356bef89bba..d49535c6274 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt index fda60ce5b8a..b4e2a84e5ff 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 7b88076309d..dd0bde72fb5 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 11c2406be21..2ce4251e651 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 79650b33d60..68076d1583f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/no.txt index 06e6f277684..a87cd90a494 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 9473a5a5360..18c1f5e08cd 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 98524683853..b76bbb1fa57 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt index c08d1f4a93d..9101372e1ce 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt index 06e6f277684..a87cd90a494 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 8bf405881de..3f5235d1eab 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 21d7ae5cd65..619ca62d28c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index b511d4621c5..e80970aa125 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/no.txt index f26b839f381..7ce9d7bce66 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index b341f302d54..221201ab5bf 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index ccd7d1d5271..2dc90958d35 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt index f2962d505ab..22be3f04171 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt index fda60ce5b8a..b4e2a84e5ff 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 65110420586..386fb787f2f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 5214a764482..ea1153986a0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index e54698a4361..dc8c3e51546 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2010-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt index 03fcdc2f5fc..e025f92a9a0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index ee0aba0c24d..83d394936bc 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index e10183ec380..778fe442182 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt index 87c173b5e6f..6618d3a5fd7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt index 03fcdc2f5fc..e025f92a9a0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index ee0aba0c24d..83d394936bc 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index c30a1a688ed..2ebe6348d8d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 49e83495687..043c5050de4 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt index 154eb3acdb3..6a8d2680ab8 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 212b85e82b0..9d4f0de9ab1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 779d32a63be..05443bdfa5a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt index 766cb16f907..b2907022816 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt index d5d3343be37..29ccb832980 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index f116c3f6661..ef9bf2f679e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index c0e8e49d4eb..c20c3e3e837 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 0ad194e3185..a8bcefe93e0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt index 03fcdc2f5fc..e025f92a9a0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index bbc9ef2ba06..3cd70033cdb 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 256da3571e1..bf62e53ca64 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt index d1c9b6da02e..9a2fcf86a00 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt index 03fcdc2f5fc..e025f92a9a0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index eba4aae0daf..82a34175be6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 234630f7122..2705d50f992 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index f31b96e43b0..2a35c1fa30e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt index 154eb3acdb3..6a8d2680ab8 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 340acd19f50..cd5b00cd43b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index f0429722d34..f133668c378 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt index 1113d26bb90..4e1d5ca6505 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt index d5d3343be37..29ccb832980 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index a32e713a0df..ab2608491f6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 23b27ef64eb..4c4f7e46e46 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 3b489481654..7f2064c0241 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt index 03fcdc2f5fc..e025f92a9a0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index ee0aba0c24d..83d394936bc 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index e10183ec380..778fe442182 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt index 87c173b5e6f..6618d3a5fd7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt index 03fcdc2f5fc..e025f92a9a0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index ee0aba0c24d..83d394936bc 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index c30a1a688ed..2ebe6348d8d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 49e83495687..043c5050de4 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt index 154eb3acdb3..6a8d2680ab8 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 212b85e82b0..9d4f0de9ab1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 779d32a63be..05443bdfa5a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt index 766cb16f907..b2907022816 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt index d5d3343be37..29ccb832980 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index f116c3f6661..ef9bf2f679e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index c0e8e49d4eb..c20c3e3e837 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 0ad194e3185..a8bcefe93e0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt index 03fcdc2f5fc..e025f92a9a0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index bbc9ef2ba06..3cd70033cdb 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 256da3571e1..bf62e53ca64 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt index d1c9b6da02e..9a2fcf86a00 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt index 03fcdc2f5fc..e025f92a9a0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index eba4aae0daf..82a34175be6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 234630f7122..2705d50f992 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index f31b96e43b0..2a35c1fa30e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt index 154eb3acdb3..6a8d2680ab8 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 340acd19f50..cd5b00cd43b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index f0429722d34..f133668c378 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt index 1113d26bb90..4e1d5ca6505 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt index d5d3343be37..29ccb832980 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index a32e713a0df..ab2608491f6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 23b27ef64eb..4c4f7e46e46 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 3b489481654..7f2064c0241 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/no.txt index 2f42ff3e277..d26e02c47a6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 3643417e9c3..3496967420a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 403c81bcf4b..78bcac36b0f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt index 3910cbcc5cd..2a163ec5920 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt index 2f42ff3e277..d26e02c47a6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 3643417e9c3..3496967420a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index d541a501ce1..53aa8860ce2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 6a7f50d6626..5d440adb0b6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/no.txt index f847c848bf5..d7885e76bdc 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 33b3bd6f412..6d6ef1cf390 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 161bc4a340c..9ef97045951 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt index e739e7b02f0..16fdfe66c28 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt index 2d07dfbc316..1c3fb8ebd0b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 97e80dedb22..c42478738e7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index b4b41c82bf1..52e04494080 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index ed78ab67141..95bf4ece14d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/no.txt index 2f42ff3e277..d26e02c47a6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index a6af522058c..e20c37f9047 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 1b1cea7e245..718a6d143dd 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt index bbf64ebd939..869093dbfef 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt index 2f42ff3e277..d26e02c47a6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 1f918d7b266..5d4b41f6283 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 71a8af01acf..9b3555bfbb2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 939e671f839..55783cc4151 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/no.txt index f847c848bf5..d7885e76bdc 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index eb6f036bca9..4e17731eef3 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 9d733e124e4..a0cff88ca03 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt index f4c73b067e1..9b58322f140 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt index 2d07dfbc316..1c3fb8ebd0b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 5a520ee02eb..93347d0c3da 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index f1fbd176dc2..ede1e6eed7d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index b67a30e94fb..362eeada539 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2011-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt index 40baaaed8ee..876bb81f0c5 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 2e33a5a8f3f..4a8cdc52b60 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index ac2931d69d7..28af3f3aec3 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt index 60c9b4cd882..6802a89212a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt index 40baaaed8ee..876bb81f0c5 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 2e33a5a8f3f..4a8cdc52b60 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index e94c478ebab..4555df500ef 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index b40f8ab1441..5c806692e7b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt index a2a9602a1b1..507e4f85bb4 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 4434ffe6758..d4c4681b53e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index eadaf40d630..75e27334d48 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt index 6f307b05885..a97e29f71de 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt index c2f62a4d3fb..fdaa0f63b62 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 28bc870f1a9..cfd7bec8c31 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 36fc6d5a06b..732cada1a2e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index c231d5150aa..091ed93ca5b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt index 40baaaed8ee..876bb81f0c5 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index c092049d9c3..72e681a786d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 26d0b15afb4..b61d6eebde7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt index c30cae445b3..ef1229bfb6e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt index 40baaaed8ee..876bb81f0c5 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 8eedb1d0787..71d33c31d3b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 496f52857f4..272572f0c82 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index c967c4c70ea..7abf54c4508 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt index a2a9602a1b1..507e4f85bb4 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index d87d5dab1ff..67cd61d050c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index ecfae497475..8ee4151e2d2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt index a70681b227e..91881637637 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt index c2f62a4d3fb..fdaa0f63b62 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 2244ff58c61..e6562f98e53 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index d5b16a63589..a3de3b95d9e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 138eb0c5f17..77925a8a124 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt index 40baaaed8ee..876bb81f0c5 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 2e33a5a8f3f..4a8cdc52b60 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index ac2931d69d7..28af3f3aec3 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt index 60c9b4cd882..6802a89212a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt index 40baaaed8ee..876bb81f0c5 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 2e33a5a8f3f..4a8cdc52b60 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index e94c478ebab..4555df500ef 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index b40f8ab1441..5c806692e7b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt index a2a9602a1b1..507e4f85bb4 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 4434ffe6758..d4c4681b53e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index eadaf40d630..75e27334d48 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt index 6f307b05885..a97e29f71de 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt index c2f62a4d3fb..fdaa0f63b62 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 28bc870f1a9..cfd7bec8c31 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 36fc6d5a06b..732cada1a2e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index c231d5150aa..091ed93ca5b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt index 40baaaed8ee..876bb81f0c5 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index c092049d9c3..72e681a786d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 26d0b15afb4..b61d6eebde7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt index c30cae445b3..ef1229bfb6e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt index 40baaaed8ee..876bb81f0c5 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 8eedb1d0787..71d33c31d3b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 496f52857f4..272572f0c82 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index c967c4c70ea..7abf54c4508 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt index a2a9602a1b1..507e4f85bb4 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index d87d5dab1ff..67cd61d050c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index ecfae497475..8ee4151e2d2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt index a70681b227e..91881637637 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt index c2f62a4d3fb..fdaa0f63b62 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 2244ff58c61..e6562f98e53 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index d5b16a63589..a3de3b95d9e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 138eb0c5f17..77925a8a124 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/no.txt index aee33caca2a..763cbb55f08 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index ffee819fc72..5a7ebcf5ba6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index db4e2e4167e..41b7caf7852 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt index f167964dbfa..2504a46e5b1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt index aee33caca2a..763cbb55f08 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index ffee819fc72..5a7ebcf5ba6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 88d3ff1985a..ba23d33e336 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index e11a5f8ee13..c0308d0a26a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/no.txt index 8b9ef0135fd..bca21cb9782 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index c783e556f69..2fdb9cc41ea 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 363fbb88a0c..728a03d1c7a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt index 94ae2e05ce4..2ae7b92e1ae 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt index 529c5e4b956..d8461957ed8 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 581af36c11f..3d6b46ca409 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 0b4c4531112..2c29911907d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 5efbe2c2bf0..466a9170bfe 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/no.txt index aee33caca2a..763cbb55f08 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 607219cdc2c..3e4aabdfd84 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index b995f8cacab..0eaaffce760 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt index 68561132335..ebaa1676528 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt index aee33caca2a..763cbb55f08 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 0a82c972a5f..f360ae17127 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 9cd694351f3..9982ccf396c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 84907bd2ac1..453413f4707 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/no.txt index 8b9ef0135fd..bca21cb9782 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 45441509b80..c57f4986a57 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 09c7eb8612a..a77c94f772c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt index 305465135f0..ff98c94f9d6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt index 529c5e4b956..d8461957ed8 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 7949e4fb895..9ae61a42d3e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index bedb29ee8f8..e122bbe6ff0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 19a15c6e7c6..a3b58a522a5 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2012-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt index f4a6c70d40f..81c944387c7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index f4a6c70d40f..81c944387c7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 69039d6e369..543720817dd 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt index 836f2ac697d..b9a5a5f9666 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt index f4a6c70d40f..81c944387c7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index f4a6c70d40f..81c944387c7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index a62b0b207bc..7541934babd 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index db902fdbaed..cb21b3db7c0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt index 58170c599b2..c1d53b4da6c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 58170c599b2..c1d53b4da6c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index e5f2c7da99d..c1ef3c34e06 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt index 22a28b1941b..6cd2b0a9cca 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt index fd1983b73b0..35b63f5ca31 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index fd1983b73b0..35b63f5ca31 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index b4893c6f7a7..17c80e599c0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index a35583cc75b..3a9b1478235 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt index f4a6c70d40f..81c944387c7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 7606833c326..b38e88e08f2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 85e12d2bcc7..19f7f9105d1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt index 0d27be1ec19..0369f1a672b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt index f4a6c70d40f..81c944387c7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 76f215a36a4..85dcea336e1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 5a4c8452351..d860f45b532 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 0c9eab1d860..a2e6d4aa9e7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt index 58170c599b2..c1d53b4da6c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 849f4f34fac..017150c5bc6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 8866e6eb32d..7f5fa4aef81 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt index 87869d8331d..4e0d6494a4d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt index fd1983b73b0..35b63f5ca31 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 58df1703d13..0cbbac57ec4 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index dd359a0e23a..9e15f58d155 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 71555c38053..b97ba5821ae 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt index f4a6c70d40f..81c944387c7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index f4a6c70d40f..81c944387c7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 69039d6e369..543720817dd 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt index 836f2ac697d..b9a5a5f9666 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt index f4a6c70d40f..81c944387c7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index f4a6c70d40f..81c944387c7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index a62b0b207bc..7541934babd 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index db902fdbaed..cb21b3db7c0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt index 58170c599b2..c1d53b4da6c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 58170c599b2..c1d53b4da6c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index e5f2c7da99d..c1ef3c34e06 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt index 22a28b1941b..6cd2b0a9cca 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt index fd1983b73b0..35b63f5ca31 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index fd1983b73b0..35b63f5ca31 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index b4893c6f7a7..17c80e599c0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index a35583cc75b..3a9b1478235 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt index f4a6c70d40f..81c944387c7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 7606833c326..b38e88e08f2 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 85e12d2bcc7..19f7f9105d1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt index 0d27be1ec19..0369f1a672b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt index f4a6c70d40f..81c944387c7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 76f215a36a4..85dcea336e1 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 5a4c8452351..d860f45b532 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 0c9eab1d860..a2e6d4aa9e7 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt index 58170c599b2..c1d53b4da6c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 849f4f34fac..017150c5bc6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 8866e6eb32d..7f5fa4aef81 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt index 87869d8331d..4e0d6494a4d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt index fd1983b73b0..35b63f5ca31 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 58df1703d13..0cbbac57ec4 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index dd359a0e23a..9e15f58d155 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 71555c38053..b97ba5821ae 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/no.txt index 15da6c778a0..0dd4871804d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index d34e3821b2e..cf7bcfadb1a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index c453ce09d0d..6ca414c89be 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt index b1711a6e3bb..f272a4ba5ba 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt index 2978324dd51..46aba07805c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index 9bdde0c05fd..65722288c76 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 29f696b9611..25938a7dcce 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 3c451126a9c..435baa298b4 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/no.txt index 5927d3829fe..909553fdab6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 5927d3829fe..909553fdab6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 2bbdc761134..e1066c59e11 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt index 422a3df39ac..db097e7b3ed 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt index 35b7c19ca4c..7830af4b34e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 35b7c19ca4c..7830af4b34e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 6c2073b25fd..4a9410d7bbf 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index 64ee31c79f5..207e68be179 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/no.txt index 15da6c778a0..0dd4871804d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 337e349651d..c567c2a0f18 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 185af692dfd..6fc0b82076a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt index 24d5831f03f..bb110e82d88 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt index 2978324dd51..46aba07805c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index d0902ebbc24..75864323f78 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 45613de940e..1663da7f80d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 36544900cd3..c630419a849 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/no.txt index 5927d3829fe..909553fdab6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index b209f7c7151..1472a59a40a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index e20c90c63e8..84dd1a618e8 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt index ba938d98d2b..9351bab0e37 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt index 35b7c19ca4c..7830af4b34e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index 4b4ba9db1e8..ce6266b9a62 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index b601de188c3..3c18fc69c34 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 71f88c0105a..a1ead0e9283 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2013-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt index b145c274479..3eca646b810 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index b145c274479..3eca646b810 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 99071a3a36a..f0a56e7cfc4 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt index c1f2005e8f2..0652eefad33 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt index b145c274479..3eca646b810 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index b145c274479..3eca646b810 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index d54699b9b3c..28a505bae08 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 61499ada92e..ca2ed3ce1ac 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt index 30e97dfbad7..8e4179f0a2f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 30e97dfbad7..8e4179f0a2f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 4ef77e1bb95..88324f534e0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt index 66c392536ea..d920c3ec836 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt index dab24daf894..64ea28d7c6d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index dab24daf894..64ea28d7c6d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index ea95fcd3709..2d94e553886 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index bea02222393..7a8f775887f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt index b145c274479..3eca646b810 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index b145c274479..3eca646b810 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 097f7c3b24c..9b9c64f7986 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt index e9410cc32ea..86836240c10 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt index b145c274479..3eca646b810 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index b145c274479..3eca646b810 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index ae6c73af27e..d1ea6777459 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 026882757c6..4410a7c7c78 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt index 30e97dfbad7..8e4179f0a2f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 30e97dfbad7..8e4179f0a2f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index d42d554debb..91eaf96233e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt index b9b11209c01..2431e7f15ab 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt index dab24daf894..64ea28d7c6d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index dab24daf894..64ea28d7c6d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 336fa6a6a21..5e8405ff620 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 45e37d20962..00d659326c0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_over_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt index b145c274479..3eca646b810 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index b145c274479..3eca646b810 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 99071a3a36a..f0a56e7cfc4 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt index c1f2005e8f2..0652eefad33 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt index b145c274479..3eca646b810 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index b145c274479..3eca646b810 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index d54699b9b3c..28a505bae08 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt index 61499ada92e..ca2ed3ce1ac 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt index 30e97dfbad7..8e4179f0a2f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 30e97dfbad7..8e4179f0a2f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 4ef77e1bb95..88324f534e0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt index 66c392536ea..d920c3ec836 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt index dab24daf894..64ea28d7c6d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index dab24daf894..64ea28d7c6d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index ea95fcd3709..2d94e553886 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt index bea02222393..7a8f775887f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt index b145c274479..3eca646b810 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index b145c274479..3eca646b810 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index 097f7c3b24c..9b9c64f7986 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt index e9410cc32ea..86836240c10 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt index b145c274479..3eca646b810 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index b145c274479..3eca646b810 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index ae6c73af27e..d1ea6777459 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 026882757c6..4410a7c7c78 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt index 30e97dfbad7..8e4179f0a2f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 30e97dfbad7..8e4179f0a2f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index d42d554debb..91eaf96233e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt index b9b11209c01..2431e7f15ab 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt index dab24daf894..64ea28d7c6d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index dab24daf894..64ea28d7c6d 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 336fa6a6a21..5e8405ff620 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt index 45e37d20962..00d659326c0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/apprentice_under_19/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/no.txt index 81625f6beaf..23fa09ece29 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt index 81625f6beaf..23fa09ece29 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt index 2f14f84f0c2..eb94b03fb64 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt index 2838e3d6b55..8a2d7f28610 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt index e0c9f0665fc..a9b5ea54ea8 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index e0c9f0665fc..a9b5ea54ea8 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index bf112560c23..9cf5617bf6c 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt index cc113621e68..c7f379c0705 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/no.txt index 87e9689de5b..4f2e1508f0b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt index 87e9689de5b..4f2e1508f0b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt index 57cd2817df5..93e37c36ea5 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt index 5a0705d06c8..32a90f0cfc0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt index f522fcfda55..160e9bcc438 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index f522fcfda55..160e9bcc438 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index 6cca0d5dca4..7b85af53d39 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt index af45752919d..832ea85cdf5 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/1/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/no.txt index 81625f6beaf..23fa09ece29 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt index 81625f6beaf..23fa09ece29 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt index cbc4a64c28b..85149e111b6 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt index 46e0a7d2766..afc96f1e66e 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt index e0c9f0665fc..a9b5ea54ea8 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt index e0c9f0665fc..a9b5ea54ea8 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt index 44467c336a8..c0e58b7452a 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt index 9ed0ddeabdc..dc33541cfb0 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/100.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/no.txt index 87e9689de5b..4f2e1508f0b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt index 87e9689de5b..4f2e1508f0b 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt index 97bf4574019..53f09a3b294 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt index 2689b989dd7..2988e55138f 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/0.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt index f522fcfda55..160e9bcc438 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/no.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt index f522fcfda55..160e9bcc438 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/5.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt index cb7f3568d5a..c2a4b2e9c01 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_charged/50.0/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay | For This calculation includes an additional amount the worker is entitled to by law for past payments. If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt index f213c0bcee6..23026731539 100644 --- a/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt +++ b/test/artefacts/minimum-wage-calculator-employers/past_payment/2014-10-01/no/25/31/16.0/300.0/8.0/10.0/yes_free/5.txt @@ -12,11 +12,13 @@ The National Minimum Wage per hour at the time | The worker’s actual pay If the worker worked overtime or you provided [accommodation](/national-minimum-wage-accommodation), this has been added to the calculation. -This result is an estimate. If you have any questions, call the confidential helpline: +This result is an estimate. If you have any questions, call the confidential helpline. $C -Acas helpline -Telephone: 0300 123 1100 +**Acas helpline**\\ +Telephone: 0300 123 1100\\ +Monday to Friday, 8am to 8pm\\ +Saturday, 9am to 1pm\\ [Find out about call charges](/call-charges) $C diff --git a/test/data/am-i-getting-minimum-wage-files.yml b/test/data/am-i-getting-minimum-wage-files.yml index c123a2f118d..e8434e9e74f 100644 --- a/test/data/am-i-getting-minimum-wage-files.yml +++ b/test/data/am-i-getting-minimum-wage-files.yml @@ -1,10 +1,11 @@ --- lib/smart_answer_flows/am-i-getting-minimum-wage.rb: 09d171f02c640624e59c6e520a10d4c4 -test/data/am-i-getting-minimum-wage-questions-and-responses.yml: ddadb3fc5fc1d82d77f53fbc90752d89 -test/data/am-i-getting-minimum-wage-responses-and-expected-results.yml: 3f047b0007e3432a77ea4e896ea763ea -lib/smart_answer_flows/am-i-getting-minimum-wage/am_i_getting_minimum_wage.govspeak.erb: 28fb978cb4744e739d38bc1927f31d9e -lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/current_payment_above.govspeak.erb: 97968331edd4f54487a156f5f41b11a9 -lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/current_payment_below.govspeak.erb: e2de59b12ab10ec87a936c23a57880e5 +test/data/am-i-getting-minimum-wage-questions-and-responses.yml: 212c0b6343d812ba81b18cb940bfba35 +test/data/am-i-getting-minimum-wage-responses-and-expected-results.yml: ee1cc2d8ee436f03a31203c4dbc3ef70 +lib/smart_answer_flows/am-i-getting-minimum-wage/am_i_getting_minimum_wage.govspeak.erb: e3bad2e005bb806999594e9f87f5e5ae +lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/current_payment_above.govspeak.erb: 9b82c9fc163ecff3b9d55e6352afbddd +lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/current_payment_below.govspeak.erb: c5df501d4653304260fb0a95111ff111 +lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/does_not_apply_to_first_year_apprentices.govspeak.erb: fb80102faf5304ff5c9bb11d1273a95a lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/does_not_apply_to_historical_apprentices.govspeak.erb: bd846fa5585f32e995c74bb714f6d600 lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/past_payment_above.govspeak.erb: 83b499f49b224ef3faf022f3f5df0ac1 lib/smart_answer_flows/am-i-getting-minimum-wage/outcomes/past_payment_below.govspeak.erb: b53b6378246a28ae3b8706d54d09bd75 @@ -21,7 +22,7 @@ lib/smart_answer_flows/am-i-getting-minimum-wage/questions/how_much_are_you_paid lib/smart_answer_flows/am-i-getting-minimum-wage/questions/how_much_were_you_paid_during_pay_period.govspeak.erb: c6abaebfaae248fd3693ba2e1beab5d3 lib/smart_answer_flows/am-i-getting-minimum-wage/questions/how_often_did_you_get_paid.govspeak.erb: 868f39331c513af521803a73a44d61ad lib/smart_answer_flows/am-i-getting-minimum-wage/questions/how_often_do_you_get_paid.govspeak.erb: 7c8cfebb76f688bfb03c3625cd413a24 -lib/smart_answer_flows/am-i-getting-minimum-wage/questions/how_old_are_you.govspeak.erb: b4c4a36d67bd08b14cdd58505736eadc +lib/smart_answer_flows/am-i-getting-minimum-wage/questions/how_old_are_you.govspeak.erb: 63448299e27159f03d1d91b90aff86c1 lib/smart_answer_flows/am-i-getting-minimum-wage/questions/how_old_were_you.govspeak.erb: bfd909f04f6d523614226a0f9b8e7ea5 lib/smart_answer_flows/am-i-getting-minimum-wage/questions/is_provided_with_accommodation.govspeak.erb: 083f1e522ae617d0aacf6851479ef28c lib/smart_answer_flows/am-i-getting-minimum-wage/questions/past_accommodation_charge.govspeak.erb: 9278d1a8b2bf2d3979fb744902c8e9ef @@ -31,8 +32,9 @@ lib/smart_answer_flows/am-i-getting-minimum-wage/questions/was_provided_with_acc lib/smart_answer_flows/am-i-getting-minimum-wage/questions/were_you_an_apprentice.govspeak.erb: 301ea07f6a6ad55cbaaefd8d3ad3c181 lib/smart_answer_flows/am-i-getting-minimum-wage/questions/what_is_overtime_pay_per_hour.govspeak.erb: d9083c3da82c3f5754f7bdd9394e7d4f lib/smart_answer_flows/am-i-getting-minimum-wage/questions/what_was_overtime_pay_per_hour.govspeak.erb: 38abdccc0f2f10e6e56837336f4143bb -lib/smart_answer_flows/am-i-getting-minimum-wage/questions/what_would_you_like_to_check.govspeak.erb: 55a3048f9ec7b6fbad1678fc41d62ffc -lib/smart_answer_flows/shared/minimum_wage/_acas_information.govspeak.erb: 0d2f7c4d01e3c928701e7d649663707e -lib/smart_answer_flows/shared_logic/minimum_wage.rb: caec9c44ba15d41e0ddf494aafca3da0 -lib/smart_answer/calculators/minimum_wage_calculator.rb: cab354bb2fc0f660d6c6aef70b9fabc5 -lib/data/minimum_wage_data.yml: 3feed11191d68237289203a2c659ecf9 +lib/smart_answer_flows/am-i-getting-minimum-wage/questions/what_would_you_like_to_check.govspeak.erb: c3ae31e57b1f5d78a30c08ed6e22f245 +lib/smart_answer_flows/am-i-getting-minimum-wage/questions/will_you_be_a_first_year_apprentice.govspeak.erb: 524767101e41ecf9a65e030adb1141f9 +lib/smart_answer_flows/shared/minimum_wage/_acas_information.govspeak.erb: 582cdf982fa5619072ddd883bf4c1555 +lib/smart_answer_flows/shared_logic/minimum_wage.rb: 95ecafbd3f164f447185bd7a165951e0 +lib/smart_answer/calculators/minimum_wage_calculator.rb: 721f27ae7e3366e4227688213590e00b +lib/data/minimum_wage_data.yml: ff0204584fe4e0672370fda487121915 diff --git a/test/data/am-i-getting-minimum-wage-questions-and-responses.yml b/test/data/am-i-getting-minimum-wage-questions-and-responses.yml index 29d63abd665..7b076d602f0 100644 --- a/test/data/am-i-getting-minimum-wage-questions-and-responses.yml +++ b/test/data/am-i-getting-minimum-wage-questions-and-responses.yml @@ -2,6 +2,7 @@ :what_would_you_like_to_check?: - current_payment - past_payment +- current_payment_april_2016 :past_payment_date?: - '2014-10-01' - '2013-10-01' @@ -15,6 +16,9 @@ - apprentice_under_19 - apprentice_over_19_first_year - apprentice_over_19_second_year_onwards +:will_you_be_a_first_year_apprentice?: +- 'no' +- 'yes' :were_you_an_apprentice?: - 'no' - apprentice_under_19 diff --git a/test/data/am-i-getting-minimum-wage-responses-and-expected-results.yml b/test/data/am-i-getting-minimum-wage-responses-and-expected-results.yml index a719ea19f86..c582a992446 100644 --- a/test/data/am-i-getting-minimum-wage-responses-and-expected-results.yml +++ b/test/data/am-i-getting-minimum-wage-responses-and-expected-results.yml @@ -23168,3 +23168,1100 @@ - apprentice_over_19 :next_node: :does_not_apply_to_historical_apprentices :outcome_node: true +- :current_node: :what_would_you_like_to_check? + :responses: + - current_payment_april_2016 + :next_node: :will_you_be_a_first_year_apprentice? + :outcome_node: false +- :current_node: :will_you_be_a_first_year_apprentice? + :responses: + - current_payment_april_2016 + - 'no' + :next_node: :how_old_are_you? + :outcome_node: false +- :current_node: :how_old_are_you? + :responses: + - current_payment_april_2016 + - 'no' + - '15' + :next_node: :how_old_are_you? + :outcome_node: false +- :current_node: :how_old_are_you? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + :next_node: :how_often_do_you_get_paid? + :outcome_node: false +- :current_node: :how_often_do_you_get_paid? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + :next_node: :how_many_hours_do_you_work? + :outcome_node: false +- :current_node: :how_many_hours_do_you_work? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16' + :next_node: :how_much_are_you_paid_during_pay_period? + :outcome_node: false +- :current_node: :how_much_are_you_paid_during_pay_period? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100' + :next_node: :how_many_hours_overtime_do_you_work? + :outcome_node: false +- :current_node: :how_many_hours_overtime_do_you_work? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '0' + :next_node: :is_provided_with_accommodation? + :outcome_node: false +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '0.0' + - 'no' + :next_node: :current_payment_below + :outcome_node: true +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '0.0' + - yes_free + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '0.0' + - yes_free + - '5' + :next_node: :current_payment_below + :outcome_node: true +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '0.0' + - yes_charged + :next_node: :current_accommodation_charge? + :outcome_node: false +- :current_node: :current_accommodation_charge? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '0.0' + - yes_charged + - '5' + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '0.0' + - yes_charged + - '5.0' + - '5' + :next_node: :current_payment_below + :outcome_node: true +- :current_node: :current_accommodation_charge? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '0.0' + - yes_charged + - '50' + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '0.0' + - yes_charged + - '50.0' + - '5' + :next_node: :current_payment_below + :outcome_node: true +- :current_node: :how_many_hours_overtime_do_you_work? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '8' + :next_node: :what_is_overtime_pay_per_hour? + :outcome_node: false +- :current_node: :what_is_overtime_pay_per_hour? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '8.0' + - '10' + :next_node: :is_provided_with_accommodation? + :outcome_node: false +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '8.0' + - '10.0' + - 'no' + :next_node: :current_payment_below + :outcome_node: true +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '8.0' + - '10.0' + - yes_free + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '8.0' + - '10.0' + - yes_free + - '5' + :next_node: :current_payment_below + :outcome_node: true +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '8.0' + - '10.0' + - yes_charged + :next_node: :current_accommodation_charge? + :outcome_node: false +- :current_node: :current_accommodation_charge? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '8.0' + - '10.0' + - yes_charged + - '5' + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '8.0' + - '10.0' + - yes_charged + - '5.0' + - '5' + :next_node: :current_payment_below + :outcome_node: true +- :current_node: :current_accommodation_charge? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '8.0' + - '10.0' + - yes_charged + - '50' + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '100.0' + - '8.0' + - '10.0' + - yes_charged + - '50.0' + - '5' + :next_node: :current_payment_below + :outcome_node: true +- :current_node: :how_much_are_you_paid_during_pay_period? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300' + :next_node: :how_many_hours_overtime_do_you_work? + :outcome_node: false +- :current_node: :how_many_hours_overtime_do_you_work? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '0' + :next_node: :is_provided_with_accommodation? + :outcome_node: false +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '0.0' + - 'no' + :next_node: :current_payment_above + :outcome_node: true +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '0.0' + - yes_free + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '0.0' + - yes_free + - '5' + :next_node: :current_payment_above + :outcome_node: true +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '0.0' + - yes_charged + :next_node: :current_accommodation_charge? + :outcome_node: false +- :current_node: :current_accommodation_charge? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '0.0' + - yes_charged + - '5' + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '0.0' + - yes_charged + - '5.0' + - '5' + :next_node: :current_payment_above + :outcome_node: true +- :current_node: :current_accommodation_charge? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '0.0' + - yes_charged + - '50' + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '0.0' + - yes_charged + - '50.0' + - '5' + :next_node: :current_payment_above + :outcome_node: true +- :current_node: :how_many_hours_overtime_do_you_work? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '8' + :next_node: :what_is_overtime_pay_per_hour? + :outcome_node: false +- :current_node: :what_is_overtime_pay_per_hour? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '8.0' + - '10' + :next_node: :is_provided_with_accommodation? + :outcome_node: false +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '8.0' + - '10.0' + - 'no' + :next_node: :current_payment_above + :outcome_node: true +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '8.0' + - '10.0' + - yes_free + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '8.0' + - '10.0' + - yes_free + - '5' + :next_node: :current_payment_above + :outcome_node: true +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '8.0' + - '10.0' + - yes_charged + :next_node: :current_accommodation_charge? + :outcome_node: false +- :current_node: :current_accommodation_charge? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '8.0' + - '10.0' + - yes_charged + - '5' + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '8.0' + - '10.0' + - yes_charged + - '5.0' + - '5' + :next_node: :current_payment_above + :outcome_node: true +- :current_node: :current_accommodation_charge? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '8.0' + - '10.0' + - yes_charged + - '50' + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '1' + - '16.0' + - '300.0' + - '8.0' + - '10.0' + - yes_charged + - '50.0' + - '5' + :next_node: :current_payment_above + :outcome_node: true +- :current_node: :how_often_do_you_get_paid? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + :next_node: :how_many_hours_do_you_work? + :outcome_node: false +- :current_node: :how_many_hours_do_you_work? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16' + :next_node: :how_much_are_you_paid_during_pay_period? + :outcome_node: false +- :current_node: :how_much_are_you_paid_during_pay_period? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100' + :next_node: :how_many_hours_overtime_do_you_work? + :outcome_node: false +- :current_node: :how_many_hours_overtime_do_you_work? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '0' + :next_node: :is_provided_with_accommodation? + :outcome_node: false +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '0.0' + - 'no' + :next_node: :current_payment_below + :outcome_node: true +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '0.0' + - yes_free + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '0.0' + - yes_free + - '5' + :next_node: :current_payment_above + :outcome_node: true +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '0.0' + - yes_charged + :next_node: :current_accommodation_charge? + :outcome_node: false +- :current_node: :current_accommodation_charge? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '0.0' + - yes_charged + - '5' + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '0.0' + - yes_charged + - '5.0' + - '5' + :next_node: :current_payment_below + :outcome_node: true +- :current_node: :current_accommodation_charge? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '0.0' + - yes_charged + - '50' + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '0.0' + - yes_charged + - '50.0' + - '5' + :next_node: :current_payment_below + :outcome_node: true +- :current_node: :how_many_hours_overtime_do_you_work? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '8' + :next_node: :what_is_overtime_pay_per_hour? + :outcome_node: false +- :current_node: :what_is_overtime_pay_per_hour? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '8.0' + - '10' + :next_node: :is_provided_with_accommodation? + :outcome_node: false +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '8.0' + - '10.0' + - 'no' + :next_node: :current_payment_below + :outcome_node: true +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '8.0' + - '10.0' + - yes_free + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '8.0' + - '10.0' + - yes_free + - '5' + :next_node: :current_payment_above + :outcome_node: true +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '8.0' + - '10.0' + - yes_charged + :next_node: :current_accommodation_charge? + :outcome_node: false +- :current_node: :current_accommodation_charge? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '8.0' + - '10.0' + - yes_charged + - '5' + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '8.0' + - '10.0' + - yes_charged + - '5.0' + - '5' + :next_node: :current_payment_below + :outcome_node: true +- :current_node: :current_accommodation_charge? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '8.0' + - '10.0' + - yes_charged + - '50' + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '100.0' + - '8.0' + - '10.0' + - yes_charged + - '50.0' + - '5' + :next_node: :current_payment_below + :outcome_node: true +- :current_node: :how_much_are_you_paid_during_pay_period? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300' + :next_node: :how_many_hours_overtime_do_you_work? + :outcome_node: false +- :current_node: :how_many_hours_overtime_do_you_work? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '0' + :next_node: :is_provided_with_accommodation? + :outcome_node: false +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '0.0' + - 'no' + :next_node: :current_payment_above + :outcome_node: true +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '0.0' + - yes_free + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '0.0' + - yes_free + - '5' + :next_node: :current_payment_above + :outcome_node: true +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '0.0' + - yes_charged + :next_node: :current_accommodation_charge? + :outcome_node: false +- :current_node: :current_accommodation_charge? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '0.0' + - yes_charged + - '5' + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '0.0' + - yes_charged + - '5.0' + - '5' + :next_node: :current_payment_above + :outcome_node: true +- :current_node: :current_accommodation_charge? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '0.0' + - yes_charged + - '50' + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '0.0' + - yes_charged + - '50.0' + - '5' + :next_node: :current_payment_below + :outcome_node: true +- :current_node: :how_many_hours_overtime_do_you_work? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '8' + :next_node: :what_is_overtime_pay_per_hour? + :outcome_node: false +- :current_node: :what_is_overtime_pay_per_hour? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '8.0' + - '10' + :next_node: :is_provided_with_accommodation? + :outcome_node: false +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '8.0' + - '10.0' + - 'no' + :next_node: :current_payment_above + :outcome_node: true +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '8.0' + - '10.0' + - yes_free + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '8.0' + - '10.0' + - yes_free + - '5' + :next_node: :current_payment_above + :outcome_node: true +- :current_node: :is_provided_with_accommodation? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '8.0' + - '10.0' + - yes_charged + :next_node: :current_accommodation_charge? + :outcome_node: false +- :current_node: :current_accommodation_charge? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '8.0' + - '10.0' + - yes_charged + - '5' + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '8.0' + - '10.0' + - yes_charged + - '5.0' + - '5' + :next_node: :current_payment_above + :outcome_node: true +- :current_node: :current_accommodation_charge? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '8.0' + - '10.0' + - yes_charged + - '50' + :next_node: :current_accommodation_usage? + :outcome_node: false +- :current_node: :current_accommodation_usage? + :responses: + - current_payment_april_2016 + - 'no' + - '25' + - '31' + - '16.0' + - '300.0' + - '8.0' + - '10.0' + - yes_charged + - '50.0' + - '5' + :next_node: :current_payment_below + :outcome_node: true +- :current_node: :will_you_be_a_first_year_apprentice? + :responses: + - current_payment_april_2016 + - 'yes' + :next_node: :does_not_apply_to_first_year_apprentices + :outcome_node: true diff --git a/test/data/minimum-wage-calculator-employers-files.yml b/test/data/minimum-wage-calculator-employers-files.yml index eed3d467c50..f54d31c6305 100644 --- a/test/data/minimum-wage-calculator-employers-files.yml +++ b/test/data/minimum-wage-calculator-employers-files.yml @@ -32,7 +32,7 @@ lib/smart_answer_flows/minimum-wage-calculator-employers/questions/were_you_an_a lib/smart_answer_flows/minimum-wage-calculator-employers/questions/what_is_overtime_pay_per_hour.govspeak.erb: 72883e35065286ae84b9bb7035b2f081 lib/smart_answer_flows/minimum-wage-calculator-employers/questions/what_was_overtime_pay_per_hour.govspeak.erb: 82a7b7b692aac807fdd73c4f5b6aea22 lib/smart_answer_flows/minimum-wage-calculator-employers/questions/what_would_you_like_to_check.govspeak.erb: a9fce44b7f15b6f72eee6df0464f7bbf -lib/smart_answer_flows/shared/minimum_wage/_acas_information.govspeak.erb: 0d2f7c4d01e3c928701e7d649663707e -lib/smart_answer_flows/shared_logic/minimum_wage.rb: caec9c44ba15d41e0ddf494aafca3da0 -lib/smart_answer/calculators/minimum_wage_calculator.rb: cab354bb2fc0f660d6c6aef70b9fabc5 -lib/data/minimum_wage_data.yml: 3feed11191d68237289203a2c659ecf9 +lib/smart_answer_flows/shared/minimum_wage/_acas_information.govspeak.erb: 582cdf982fa5619072ddd883bf4c1555 +lib/smart_answer_flows/shared_logic/minimum_wage.rb: 95ecafbd3f164f447185bd7a165951e0 +lib/smart_answer/calculators/minimum_wage_calculator.rb: 721f27ae7e3366e4227688213590e00b +lib/data/minimum_wage_data.yml: ff0204584fe4e0672370fda487121915 diff --git a/test/unit/calculators/minimum_wage_calculator_test.rb b/test/unit/calculators/minimum_wage_calculator_test.rb index ea9f28577b6..0d489b45ceb 100644 --- a/test/unit/calculators/minimum_wage_calculator_test.rb +++ b/test/unit/calculators/minimum_wage_calculator_test.rb @@ -98,6 +98,17 @@ class MinimumWageCalculatorTest < ActiveSupport::TestCase assert @calculator.valid_accommodation_usage?(7) end end + + context 'for age for living wage' do + should 'not accept ages below 25' do + refute @calculator.valid_age_for_living_wage?(24) + end + + should 'accept ages 25 or above' do + assert @calculator.valid_age_for_living_wage?(25) + assert @calculator.valid_age_for_living_wage?(26) + end + end end context '#any_overtime_hours_worked?' do @@ -132,6 +143,26 @@ class MinimumWageCalculatorTest < ActiveSupport::TestCase end end + context '#eligible_for_living_wage?' do + setup do + @calculator = MinimumWageCalculator.new + end + + should 'return true if the age is 25 or over' do + %w(25 26).each do |age| + @calculator.age = age + assert @calculator.eligible_for_living_wage? + end + end + + should 'return false if age is lower than 24 or nil' do + %w(nil 0 24).each do |age| + @calculator.age = age + assert !@calculator.eligible_for_living_wage? + end + end + end + context '#under_school_leaving_age?' do setup do @calculator = MinimumWageCalculator.new @@ -1000,5 +1031,25 @@ class MinimumWageCalculatorTest < ActiveSupport::TestCase assert_equal 14.29, calculator.total_hourly_rate end end + + context '#living_wage_or_above?' do + setup do + @calculator = MinimumWageCalculator.new + end + + should 'returns false if the total_hourly_rate is less than 7.2' do + [nil, 0, 7.1999999].each do |hourly_rate| + @calculator.stubs(:total_hourly_rate).returns(hourly_rate) + assert !@calculator.living_wage_or_above? + end + end + + should 'returns true if the total_hourly_rate is 7.2 or above' do + [7.2, 7.2000001].each do |hourly_rate| + @calculator.stubs(:total_hourly_rate).returns(hourly_rate) + assert @calculator.living_wage_or_above? + end + end + end end end diff --git a/test/unit/smart_answer_flows/am_i_getting_minimum_wage_flow_test.rb b/test/unit/smart_answer_flows/am_i_getting_minimum_wage_flow_test.rb index 1df10215232..912fd1e6352 100644 --- a/test/unit/smart_answer_flows/am_i_getting_minimum_wage_flow_test.rb +++ b/test/unit/smart_answer_flows/am_i_getting_minimum_wage_flow_test.rb @@ -19,7 +19,8 @@ class AmIGettingMinimumWageFlowTest < ActiveSupport::TestCase @state = SmartAnswer::State.new(@question) @calculator = stub('calculator', :age= => nil, - :under_school_leaving_age? => nil + :under_school_leaving_age? => nil, + :what_to_check => nil ) @state.calculator = @calculator end