diff --git a/test/functionality/_helper/shell.ts b/test/functionality/_helper/shell.ts index a871ae39e4..1788eb7c6f 100644 --- a/test/functionality/_helper/shell.ts +++ b/test/functionality/_helper/shell.ts @@ -19,11 +19,10 @@ import type { MergeableRecord } from '../../../src/util/objects' import { deepMergeObject } from '../../../src/util/objects' import { NAIVE_RECONSTRUCT } from '../../../src/core/steps/all/static-slicing/10-reconstruct' import { guard } from '../../../src/util/assert' -import { createPipeline, DEFAULT_NORMALIZE_PIPELINE, DEFAULT_RECONSTRUCT_PIPELINE, DEFAULT_SLICING_PIPELINE } from '../../../src/core/steps/pipeline' +import { createPipeline, DEFAULT_NORMALIZE_PIPELINE, DEFAULT_RECONSTRUCT_PIPELINE } from '../../../src/core/steps/pipeline' import { PipelineExecutor } from '../../../src/core/pipeline-executor' import { PARSE_WITH_R_SHELL_STEP } from '../../../src/core/steps/all/core/00-parse' import { NORMALIZE } from '../../../src/core/steps/all/core/10-normalize' -import { LAST_STEP } from '../../../src/core/steps/steps' import type { TestLabel } from './label' import { decorateLabelContext } from './label' import { STATIC_DATAFLOW } from '../../../src/core/steps/all/core/20-dataflow' diff --git a/test/functionality/util/control-flow-graph-tests.ts b/test/functionality/util/control-flow-graph-tests.ts index 3a23f565ee..e5a7754a43 100644 --- a/test/functionality/util/control-flow-graph-tests.ts +++ b/test/functionality/util/control-flow-graph-tests.ts @@ -16,9 +16,7 @@ import { defaultQuadIdGenerator } from '../../../src/util/quads' import { cfgToMermaidUrl } from '../../../src/util/mermaid' import { normalizeIdToNumberIfPossible } from '../../../src/r-bridge/lang-4.x/ast/model/processing/node-id' import { PipelineExecutor } from '../../../src/core/pipeline-executor' -import { createPipeline, DEFAULT_NORMALIZE_PIPELINE } from '../../../src/core/steps/pipeline' -import { PARSE_WITH_R_SHELL_STEP } from '../../../src/core/steps/all/core/00-parse' -import { NORMALIZE } from '../../../src/core/steps/all/core/10-normalize' +import { DEFAULT_NORMALIZE_PIPELINE } from '../../../src/core/steps/pipeline' function normAllIds(ids: NodeId[]): NodeId[] { return ids.map(normalizeIdToNumberIfPossible)