summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-05-18 08:01:39 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-05-18 08:01:39 +0200
commita146fdcd6fb2ad84625c29876c1fd1a780fbf0b3 (patch)
tree49ca622e96e1d2d588314c29540eb9bb2d13c563 /t
parent556ea57a7ce1e072f5360c00f5cef2406dff794f (diff)
App/Hashl: files: Do not return sorted
Diffstat (limited to 't')
-rw-r--r--t/29-app-hashl.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/29-app-hashl.t b/t/29-app-hashl.t
index c14aca1..325c3b2 100644
--- a/t/29-app-hashl.t
+++ b/t/29-app-hashl.t
@@ -54,7 +54,7 @@ ok($hashl->add_file(
),
'Add another file'
);
-is_deeply([$hashl->files()], [qw[t/in/1k t/in/4]], 'Both files in list');
+is_deeply([sort $hashl->files()], [qw[t/in/1k t/in/4]], 'Both files in list');
ok($hashl->file_in_db('t/in/1k'), 'file in db');
ok($hashl->file_in_db('t/in/4'), 'other file in db');