Skip to content

Commit

Permalink
lint(alias): lint local
Browse files Browse the repository at this point in the history
  • Loading branch information
gigalasr committed Dec 22, 2024
1 parent db2a931 commit cd67245
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import type { ParentInformation } from '../../../../../../r-bridge/lang-4.x/ast/
import type { RFunctionArgument } from '../../../../../../r-bridge/lang-4.x/ast/model/nodes/r-function-call';
import type { NodeId } from '../../../../../../r-bridge/lang-4.x/ast/model/processing/node-id';
import { dataflowLogger } from '../../../../../logger';
import { resolve, resolveToValues } from '../../../../../environments/resolve-by-name';
import { resolve } from '../../../../../environments/resolve-by-name';
import { EdgeType } from '../../../../../graph/edge';
import { appendEnvironment } from '../../../../../environments/append';
import type { IdentifierReference } from '../../../../../environments/identifier';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ while(x) {
if(runif(1))
x <- FALSE
}`, 'x', [true, false]]
])('%s should resolve %s to %o', async (code, identifier, expectedValues) => {
])('%s should resolve %s to %o', async(code, identifier, expectedValues) => {
const result = await runPipeline(code, shell);
const values = resolveToValues(identifier as Identifier, result.dataflow.environment, result.dataflow.graph);
expect(values).toEqual(expectedValues);
Expand Down

0 comments on commit cd67245

Please sign in to comment.