Skip to content

Commit

Permalink
Change double quotes to single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
xenosf committed Mar 27, 2024
1 parent 96616e6 commit 3572cd6
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ describe('RequestPageComponent', () => {

it('should render correctly after form is submitted', () => {
component.submittedFormData = {
name: "Jane Smith",
institution: "University of Example",
country: "Example Republic",
email: "[email protected]",
homePage: "u.exampleu.edu/jsmith",
comments: "",
name: 'Jane Smith',
institution: 'University of Example',
country: 'Example Republic',
email: '[email protected]',
homePage: 'u.exampleu.edu/jsmith',
comments: '',
};
fixture.detectChanges();
expect(fixture).toMatchSnapshot();
Expand Down

0 comments on commit 3572cd6

Please sign in to comment.