Skip to content

Commit

Permalink
style: format code with Prettier (#2565)
Browse files Browse the repository at this point in the history
  • Loading branch information
deepsource-autofix[bot] committed Apr 13, 2024
1 parent e4a4430 commit c874003
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions test/fixtures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,10 @@ abstract class LanguageFixture extends Fixture {
}

class JSONFixture extends LanguageFixture {
constructor(language: languages.Language, public name: string = language.name) {
constructor(
language: languages.Language,
public name: string = language.name
) {
super(language);
}

Expand Down Expand Up @@ -568,7 +571,10 @@ class JSONTypeScriptFixture extends JSONToXToYFixture {

// This fixture tests generating code from JSON Schema.
class JSONSchemaFixture extends LanguageFixture {
constructor(language: languages.Language, readonly name: string = `schema-${language.name}`) {
constructor(
language: languages.Language,
readonly name: string = `schema-${language.name}`
) {
super(language);
}

Expand Down Expand Up @@ -699,7 +705,10 @@ class GraphQLFixture extends LanguageFixture {
}

class CommandSuccessfulLanguageFixture extends LanguageFixture {
constructor(language: languages.Language, public name: string = language.name) {
constructor(
language: languages.Language,
public name: string = language.name
) {
super(language);
}

Expand Down

0 comments on commit c874003

Please sign in to comment.