Fixed CID 1216439: potential copy&paste error in testing symbol database.

This commit is contained in:
orbitcowboy 2014-05-28 17:05:42 +02:00
parent 610f099487
commit 27cee5caa5
1 changed files with 2 additions and 2 deletions

View File

@ -2323,8 +2323,8 @@ private:
ASSERT_EQUALS(false, ul->isFloatingType());
}
const Variable *ll = db->getVariableFromVarId(11);
ASSERT(ui != nullptr);
if (ui) {
ASSERT(ll != nullptr);
if (ll) {
ASSERT_EQUALS("ll", ll->nameToken()->str());
ASSERT_EQUALS(true, ll->isIntegralType());
ASSERT_EQUALS(false, ll->isFloatingType());