Skip to content

Commit

Permalink
Merge pull request #1113 from companieshouse/fee-78-S-Update-DS01-fee…
Browse files Browse the repository at this point in the history
…-CHS

fee-78-s-update-ds01-fee-chs
  • Loading branch information
nevans4-ch authored Apr 22, 2024
2 parents dc10d86 + 7fca407 commit f582ddb
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/views/landing.njk
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<h1 class="govuk-heading-xl">{{ serviceName }}</h1>
<p class="govuk-body-l">Use this service to apply to close a public limited company, a private limited company, or a limited liability partnership (LLP).</p>
<p class="govuk-body">For companies with multiple directors, more than half of the directors need to sign the application before it can be submitted.</p>
<p class="govuk-body">It costs £8 and you'll need:</p>
<p class="govuk-body">It costs £33 and you'll need:</p>
<ul class="govuk-list govuk-list--bullet">
<li>to sign in to or create a Companies House account, which is different from a WebFiling account</li>
<li>the company number</li>
Expand Down
4 changes: 2 additions & 2 deletions test/controllers/paymentReview.controller.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ describe("PaymentReviewController", () => {

assert.isTrue(htmlAssertHelper.hasText("h1", "Review your payment"))
assert.isTrue(htmlAssertHelper.hasText("#item-0", "Some payment description"))
assert.isTrue(htmlAssertHelper.hasText("#amount-to-pay-0", 8.00"))
assert.isTrue(htmlAssertHelper.hasText("#total_cost", 16.00"))
assert.isTrue(htmlAssertHelper.hasText("#amount-to-pay-0", 33.00"))
assert.isTrue(htmlAssertHelper.hasText("#total_cost", 66.00"))
})
})

Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/dissolutionApi.fixtures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function generatePaymentItem (): PaymentItem {
description_identifier: "Some payment description identifier",
description_values: {},
product_type: ApplicationType.DS01,
amount: "8",
amount: "33",
available_payment_methods: ["credit-card"],
class_of_payment: ["data-maintenance"],
kind: "dissolution-request#payment-details",
Expand Down
4 changes: 2 additions & 2 deletions test/fixtures/payment.fixtures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ export function generatePayment (): Payment {
export function generatePaymentSummary (): PaymentSummary {
return {
payments: [generatePaymentDetails(), generatePaymentDetails()],
total_cost: 16.00"
total_cost: 66.00"
}
}

function generatePaymentDetails (): PaymentDetails {
return {
description: "Some payment description",
cost: 8.00"
cost: 33.00"
}
}

Expand Down
12 changes: 6 additions & 6 deletions test/utils/currency.util.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ import { assert } from "chai"
import convertToCurrency from "app/utils/currencyConverter.util"

describe("CurrencyConverter", () => {
it("should return the correct currency value if the value is 8", () => {
const currency: string = convertToCurrency(8)
it("should return the correct currency value if the value is 33", () => {
const currency: string = convertToCurrency(33)

assert.equal(8.00", currency)
assert.equal(33.00", currency)
})

it("should return the correct currency value if the value is 8.00", () => {
const currency: string = convertToCurrency(8.00)
it("should return the correct currency value if the value is 33.00", () => {
const currency: string = convertToCurrency(33.00)

assert.equal(8.00", currency)
assert.equal(33.00", currency)
})
})

0 comments on commit f582ddb

Please sign in to comment.