diff options
author | Russ Allbery <rra@stanford.edu> | 2007-12-01 01:55:18 +0000 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2007-12-01 01:55:18 +0000 |
commit | 45d8382fb2cc3f32b176675c0edb7eef5ca6aa21 (patch) | |
tree | c8e8fba8ead6ff59205536be23aeab688ebb7d02 /tests | |
parent | a4bedfb2e84598b3b0d66cbb2fc30417126124eb (diff) |
Expiration dates are now expressed in YYYY-MM-DD HH:MM:SS instead of
seconds since epoch and returned the same way. Timestamps are now
stored in the database as correct date and time types rather than
seconds since epoch to work properly with MySQL.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/server/backend-t.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/server/backend-t.in b/tests/server/backend-t.in index 44a4a48..8509177 100644 --- a/tests/server/backend-t.in +++ b/tests/server/backend-t.in @@ -9,7 +9,7 @@ use strict; use IO::String; -use Test::More tests => 1219; +use Test::More tests => 1222; # Create a dummy class for Wallet::Server that prints what method was called # with its arguments and returns data for testing. @@ -195,7 +195,7 @@ is ($out, "$new\n", ' and nothing ran'); # Check too few, too many, and bad arguments for every command. my %commands = (create => [2, 2], destroy => [2, 2], - expires => [2, 3], + expires => [2, 4], get => [2, 2], getacl => [3, 3], getattr => [3, 3], |