Skip to content

Commit 871c50a

Browse files
committed
Variable name.
1 parent 64a58a0 commit 871c50a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

com.ibm.wala.cast.python.ml.test/source/com/ibm/wala/cast/python/ml/test/TestTensorflow2Model.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3680,8 +3680,8 @@ private void test(
36803680
Map<Integer, Set<TensorType>> expectedTensorParameterValueNumberToTypes)
36813681
throws ClassHierarchyException, CancelException, IOException {
36823682
List<File> pathFiles = this.getPathFiles(pythonPath);
3683-
PythonTensorAnalysisEngine E = makeEngine(pathFiles, projectFilenames);
3684-
PythonSSAPropagationCallGraphBuilder builder = E.defaultCallGraphBuilder();
3683+
PythonTensorAnalysisEngine engine = makeEngine(pathFiles, projectFilenames);
3684+
PythonSSAPropagationCallGraphBuilder builder = engine.defaultCallGraphBuilder();
36853685

36863686
addPytestEntrypoints(builder);
36873687

@@ -3697,10 +3697,10 @@ private void test(
36973697
LOGGER.fine("Call graph:\n" + CG);
36983698
}
36993699

3700-
TensorTypeAnalysis analysis = E.performAnalysis(builder);
3700+
TensorTypeAnalysis analysis = engine.performAnalysis(builder);
37013701
LOGGER.info("Tensor analysis: " + analysis);
37023702

3703-
Map<PointerKey, AnalysisError> errors = E.getErrors();
3703+
Map<PointerKey, AnalysisError> errors = engine.getErrors();
37043704

37053705
errors.forEach(
37063706
(k, v) ->

0 commit comments

Comments
 (0)