Revert "Hash accessor should accept more than 2 arguments"
[gitmo/Moose.git] / t / 070_native_traits / 050_trait_hash.t
index b7bb837..107b851 100644 (file)
@@ -176,7 +176,7 @@ sub run_tests {
             '... returns what we expect'
         );
 
-        $obj->option_accessor( size => 42, group => 10 );
+        $obj->option_accessor( size => 42 );
 
         like(
             exception {
@@ -187,7 +187,7 @@ sub run_tests {
         );
 
         is_deeply(
-            $obj->options, { quantity => 4, size => 42, group => 10 },
+            $obj->options, { quantity => 4, size => 42 },
             'accessor as writer'
         );