bumb version and redue key size to solve reported errors in testing 1.001018
John Napiorkowski [Mon, 22 Oct 2012 14:21:52 +0000 (10:21 -0400)]
Changes
lib/DBIx/Class/Fixtures.pm
t/lib/DBICTest.pm
t/var/configs/fetch.json

diff --git a/Changes b/Changes
index 9c11397..9bb99f3 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for DBIx-Class-Fixtures
 
+1.001018
+- Reduced the size of a PK in the fixtures to stop (hopefully) some occasional
+  error reports
+
 1.001017
 - POD fixes (justin hunter++)
 - Changed the test suite so it doesn't mindlessly break with the changes
index f996b88..76f3de0 100644 (file)
@@ -26,7 +26,7 @@ our $namespace_counter = 0;
 __PACKAGE__->mk_group_accessors( 'simple' => qw/config_dir
     _inherited_attributes debug schema_class dumped_objects config_attrs/);
 
-our $VERSION = '1.001017';
+our $VERSION = '1.001018';
 
 =head1 NAME
 
index bcbacba..988e02b 100755 (executable)
@@ -150,7 +150,7 @@ sub populate_schema {
         [ 2, 'Random Boy Band' ],
         [ 3, 'We Are Goth' ],
         [ 4, '' ], # Test overridden new will default name to "Test Name" using use_create => 1.
-        [ 329482389748937, 'Big PK' ],
+        [ 32948, 'Big PK' ],
     ]);
 
     $schema->populate('CD', [
index 7b92a17..fb4f647 100644 (file)
@@ -16,7 +16,7 @@
         
         {
             "class": "Artist",
-            "ids": ["329482389748937"],
+            "ids": ["32948"],
             "fetch": [{
                 "rel": "cds",
                 "quantity": "all"