From b6672646a61be0802ff294096811f1fca92769ea Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Sat, 30 Nov 2019 16:52:52 -0800 Subject: [PATCH] Fixed test --- IDEHelper/Tests/src/Extensions.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDEHelper/Tests/src/Extensions.bf b/IDEHelper/Tests/src/Extensions.bf index fc65e32d..fd287a24 100644 --- a/IDEHelper/Tests/src/Extensions.bf +++ b/IDEHelper/Tests/src/Extensions.bf @@ -190,7 +190,7 @@ namespace Tests // This should only call the LibA version since the LibA:LibClassB.DoGetVal3 won't have // access to call the Tests:LibClassB.DoGetVal3 int indirectResult = LibClassB.DoGetVal3(a); - Test.Assert(directResult == 30); + Test.Assert(indirectResult == 30); } } }