diff options
author | Russ Allbery <rra@stanford.edu> | 2008-01-23 19:17:09 +0000 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2008-01-23 19:17:09 +0000 |
commit | 45e33ff74717f39c421091f1a74f7d895e38bf57 (patch) | |
tree | b2d6e6e2ce21612eae18ecde213e372787e58711 /perl/t/keytab.t | |
parent | 77b6875f95aa54fe9c648ba114e06d85cf655bb1 (diff) |
Add a destroy() method to the Wallet::Admin object and use that instead
of Wallet::Schema::drop in the test suite.
Diffstat (limited to 'perl/t/keytab.t')
-rwxr-xr-x | perl/t/keytab.t | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl/t/keytab.t b/perl/t/keytab.t index a40332a..503b5c9 100755 --- a/perl/t/keytab.t +++ b/perl/t/keytab.t @@ -892,6 +892,5 @@ EOO } # Clean up. -my $schema = Wallet::Schema->new; -$schema->drop ($dbh); +$admin->destroy; unlink ('wallet-db', 'krb5cc_temp', 'krb5cc_test', 'test-acl', 'test-pid'); |