diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-07-04 09:37:36 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-07-04 09:37:36 +0200 |
commit | e496f621262e74133d9870cc197217552ad10185 (patch) | |
tree | 53ed5eee5fa1548588f6f9f4a449756db53ddd69 /t | |
parent | 2db2afec688b8b44ddeca55cd8226c1db923b17f (diff) |
Raps2.pm: Make file_to_hash return a hashref (consistency with pw_load)
Diffstat (limited to 't')
-rw-r--r-- | t/29-app-raps2.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/29-app-raps2.t b/t/29-app-raps2.t index ddea7fa..53aa51d 100644 --- a/t/29-app-raps2.t +++ b/t/29-app-raps2.t @@ -24,7 +24,7 @@ isa_ok($r2, 'App::Raps2'); isa_ok($r2->ui(), 'App::Raps2::UI'); is_deeply( - { $r2->file_to_hash('t/in/hash') }, + $r2->file_to_hash('t/in/hash'), { key => 'value', otherkey => 'othervalue' }, 'file_to_hash works', ); |