diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-06-13 13:54:20 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-06-13 16:20:20 +0100 |
commit | 9525f5765dd3621673ba688fda195de1963455df (patch) | |
tree | c0de808d46f9726c94e3cae1c79c4bd9752d573b /t/app/controller/admin | |
parent | d8c4befc47afee2da94dbc2411a849f14cd1a7f7 (diff) |
Use correct created column in problem timeline.
The User model now also has a created column.
Diffstat (limited to 't/app/controller/admin')
-rw-r--r-- | t/app/controller/admin/users.t | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/app/controller/admin/users.t b/t/app/controller/admin/users.t index 8759e260d..0d8290c37 100644 --- a/t/app/controller/admin/users.t +++ b/t/app/controller/admin/users.t @@ -450,4 +450,8 @@ subtest "Removing account from admin" => sub { is $user->email, 'removed-' . $user->id . '@example.org', 'Email gone' }; +subtest "View timeline" => sub { + $mech->get_ok('/admin/timeline'); +}; + done_testing(); |