1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Fixed test

This commit is contained in:
Brian Fiete 2019-11-30 16:52:52 -08:00
parent ad9075d1aa
commit b6672646a6

View file

@ -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);
}
}
}