diff options
author | Chris Mytton <self@hecticjeff.net> | 2013-09-05 11:06:23 +0100 |
---|---|---|
committer | Chris Mytton <self@hecticjeff.net> | 2013-09-05 11:06:23 +0100 |
commit | 2834b0541662d202b8873ef1d7111a866b441e7f (patch) | |
tree | 76c248426d43d8d0a9591835dae7fc56a0e9a57f /t | |
parent | 1fbe80d26280ece11fade39c23a48fffebe27557 (diff) |
[Zurich] Fix spacing in tests
Diffstat (limited to 't')
-rw-r--r-- | t/cobrand/zurich.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/cobrand/zurich.t b/t/cobrand/zurich.t index 721e6517a..ef207421b 100644 --- a/t/cobrand/zurich.t +++ b/t/cobrand/zurich.t @@ -240,13 +240,13 @@ $mech->clear_emails_ok; $mech->log_out_ok; # Test only superuser can edit bodies -$user = $mech->log_in_ok( 'dm1@example.org') ; +$user = $mech->log_in_ok( 'dm1@example.org' ); $mech->get( '/admin/body/' . $zurich->id ); is $mech->res->code, 404, "only superuser should be able to edit bodies"; $mech->log_out_ok; # Test only superuser can see "Add body" form -$user = $mech->log_in_ok( 'dm1@example.org') ; +$user = $mech->log_in_ok( 'dm1@example.org' ); $mech->get_ok( '/admin/bodies' ); $mech->content_lacks( '<form method="post" action="bodies"' ); $mech->log_out_ok; |