Remove useless whitespace
[gitmo/MooseX-Singleton.git] / t / 001-basic.t
index 12c0eb2..cb53269 100644 (file)
@@ -1,6 +1,6 @@
 use strict;
 use warnings;
-use Test::More tests => 17;
+use Test::More;
 
 BEGIN {
     package MooseX::Singleton::Test;
@@ -71,4 +71,6 @@ is( MooseX::Singleton::Test->distinct_keys, 0, "Package->clear works" );
 
 MooseX::Singleton::Test->_clear_instance;
 $mst = $mst2 = undef;
-is( MooseX::Singleton::Test->new->distinct_keys, 1, "back to the default" );
+is( MooseX::Singleton::Test->instance->distinct_keys, 1, "back to the default" );
+
+done_testing;