Kaynağa Gözat

scripts/t: Swap is_deeply() got and expected arguments

Guillem Jover 11 yıl önce
ebeveyn
işleme
1ca7f6ff55
1 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  1. 3 3
      scripts/t/Dpkg_Shlibs.t

+ 3 - 3
scripts/t/Dpkg_Shlibs.t

@@ -45,9 +45,9 @@ chdir($cwd);
 use Data::Dumper;
 
 my @librarypaths = Dpkg::Shlibs::get_library_paths();
-is_deeply([qw(/nonexistant32 /nonexistant/lib64
-	     /usr/local/lib /nonexistant/lib128 )],
-	  \@librarypaths, 'parsed library paths');
+is_deeply(\@librarypaths,
+          [ qw(/nonexistant32 /nonexistant/lib64
+               /usr/local/lib /nonexistant/lib128) ], 'parsed library paths');
 
 use_ok('Dpkg::Shlibs::Objdump');