Unit Tests - record.t

- Fixed bug in unit tests that claimed to be calling Record::get_ulong,
  but was calling Record::get_int instead.  Silly error.
This commit is contained in:
Paul Beckingham 2010-03-14 11:23:15 -04:00
parent 485734e107
commit df8eb7d5ef

View file

@ -97,7 +97,7 @@ int main (int argc, char** argv)
// Record::get_ulong
record.set ("two", "4294967295");
t.is (record.composeF4 (), "[name:\"value\" one:\"1\" two:\"4294967295\"]\n", "Record::set");
t.is (record.get_int ("two"), 4294967295, "Record::get_ulong");
t.is (record.get_ulong ("two"), 4294967295, "Record::get_ulong");
// Record::remove
record.remove ("one");