Skip to content

Commit

Permalink
lint-fix: automatic fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
EagleoutIce committed Oct 10, 2023
1 parent 0fc0c4b commit 0dc4708
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test/functionality/statistics/features/defined-functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ describe('Used Function Definitions', withShell(shell => {
]
},
{
name: 'the identity lambda function',
code: '\\(x) x',
name: 'the identity lambda function',
code: '\\(x) x',
requirements: {
minRVersion: MIN_VERSION_LAMBDA
},
Expand Down
8 changes: 4 additions & 4 deletions test/functionality/statistics/statistics.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ async function expectFeature<T extends FeatureKey>(shell: RShell, feature: T, co
}

export interface StatisticsTest {
name: string
code: string
name: string
code: string
requirements?: Partial<TestConfiguration>
expected: Partial<FeatureValue<FeatureKey>>
expected: Partial<FeatureValue<FeatureKey>>
/**
* the expected output written to file, the feature is inferred from the feature given to {@link testForFeatureForInput},
* set to 'nothing' if nothing should be recorded.
* If, for the file contents you pass objects, `JSON.stringify` will be called automatically them.
*/
written: [AppendFnType, (string | object)[]][] | 'nothing'
written: [AppendFnType, (string | object)[]][] | 'nothing'
}

/**
Expand Down

0 comments on commit 0dc4708

Please sign in to comment.