Skip to content

Commit

Permalink
fix: update corporation names
Browse files Browse the repository at this point in the history
  • Loading branch information
dsueltenfuss committed Apr 5, 2022
1 parent d10f210 commit 27773af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions shared/src/legalStructure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ export const LegalStructures: LegalStructure[] = [
},
{
id: "c-corporation",
name: "C Corporation",
name: "Corporation",
requiresPublicFiling: true,
hasTradeName: false,
onboardingOrder: 40,
},
{
id: "s-corporation",
name: "C Corporation with S Corp Tax Designation",
name: "Corporation (and optional S Corp tax designation)",
requiresPublicFiling: true,
hasTradeName: false,
onboardingOrder: 50,
Expand Down
4 changes: 2 additions & 2 deletions web/test/pages/roadmap.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ describe("roadmap page", () => {
});
const subject = renderRoadmapPage();
expect(subject.queryByText("some name")).toBeInTheDocument();
expect(subject.queryByText("C Corporation")).toBeInTheDocument();
expect(subject.queryByText("Corporation")).toBeInTheDocument();
expect(subject.queryByText("Franklin")).toBeInTheDocument();
expect(subject.queryByText("Restaurant")).toBeInTheDocument();
expect(subject.queryByText("123456790")).not.toBeInTheDocument();
Expand All @@ -336,7 +336,7 @@ describe("roadmap page", () => {

fireEvent.click(subject.getByText(Config.roadmapDefaults.greyBoxViewMoreText));
expect(subject.queryByText("some name")).toBeInTheDocument();
expect(subject.queryByText("C Corporation")).toBeInTheDocument();
expect(subject.queryByText("Corporation")).toBeInTheDocument();
expect(subject.queryByText("Franklin")).toBeInTheDocument();
expect(subject.queryByText("Restaurant")).toBeInTheDocument();
expect(subject.queryByText("123456790")).toBeInTheDocument();
Expand Down

0 comments on commit 27773af

Please sign in to comment.