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:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user