From: Graham Knop <haarg@haarg.org>
Date: Sun, 28 Jun 2015 05:52:11 +0000 (-0400)
Subject: fix order of got vs expected in trace test
X-Git-Tag: v0.010004~7
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=bd483d71d7d573c4a939f659fe785746f1ee4efb;p=p5sagit%2FApp-FatPacker.git

fix order of got vs expected in trace test
---

diff --git a/t/trace.t b/t/trace.t
index a461001..313ef64 100755
--- a/t/trace.t
+++ b/t/trace.t
@@ -20,7 +20,7 @@ sub test_trace {
   open my $trace, "<", "fatpacker.trace";
   my @traced = sort map { chomp; $_ } <$trace>;
 
-  is_deeply \@loaded, \@traced, "All expected modules loaded for $file";
+  is_deeply \@traced, \@loaded, "All expected modules loaded for $file";
   unlink "fatpacker.trace";
 }