mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
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:
parent
485734e107
commit
df8eb7d5ef
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue