]> eyrie.org Git - kerberos/krb5-strength.git/commitdiff
Fix perltidy error in wordlist-sqlite test
authorRuss Allbery <eagle@eyrie.org>
Tue, 25 Mar 2014 19:28:52 +0000 (12:28 -0700)
committerRuss Allbery <eagle@eyrie.org>
Tue, 25 Mar 2014 19:28:52 +0000 (12:28 -0700)
tests/tools/wordlist-sqlite-t

index c3b5cf5ea4775a46ab0fb6f75753d0aedca990d9..1666e44db76eb3ac4819a83bd2a51d165ebe8150 100755 (executable)
@@ -84,7 +84,7 @@ ok(defined($dbh), 'Opening SQLite database succeeded');
 # Walk through every row in the passwords table and ensure that the drowssap
 # column is the reverse of the password column.  Accumulate the passwords so
 # that we can check against the contents of the word list.
-my $sql = 'SELECT PASSWORD, DROWSSAP FROM PASSWORDS';
+my $sql      = 'SELECT PASSWORD, DROWSSAP FROM PASSWORDS';
 my $data_ref = $dbh->selectall_arrayref($sql);
 my @got;
 for my $row (@{$data_ref}) {