From 7ff13387285144467a6c139c903309193e8b3b68 Mon Sep 17 00:00:00 2001 From: yann300 Date: Wed, 18 Apr 2018 17:31:40 +0200 Subject: [PATCH] Fix static analysis test - looks more right now --- .../test/analysis/staticAnalysisIntegration-test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/remix-solidity/test/analysis/staticAnalysisIntegration-test.js b/remix-solidity/test/analysis/staticAnalysisIntegration-test.js index 6afca8cfdd..d708f6ea9b 100644 --- a/remix-solidity/test/analysis/staticAnalysisIntegration-test.js +++ b/remix-solidity/test/analysis/staticAnalysisIntegration-test.js @@ -115,10 +115,10 @@ test('Integration test constantFunctions.js', function (t) { 'modifier1.sol': 1, 'modifier2.sol': 0, 'notReentrant.sol': 0, - 'structReentrant.sol': 0, + 'structReentrant.sol': 1, 'thisLocal.sol': 1, 'globals.sol': 0, - 'library.sol': 1, + 'library.sol': 3, 'transfer.sol': 0, 'ctor.sol': 0, 'forgottenReturn.sol': 0, @@ -209,7 +209,7 @@ test('Integration test gasCosts.js', function (t) { 'modifier2.sol': 1, 'notReentrant.sol': 1, 'structReentrant.sol': 1, - 'thisLocal.sol': 2, + 'thisLocal.sol': 1, 'globals.sol': 1, 'library.sol': 1, 'transfer.sol': 1,