diff --git a/BDL/Test_classes/Assembly/BDL_Test_Assembly.php b/BDL/Test_classes/Assembly/BDL_Test_Assembly.php index 2b2221f..be597b1 100644 --- a/BDL/Test_classes/Assembly/BDL_Test_Assembly.php +++ b/BDL/Test_classes/Assembly/BDL_Test_Assembly.php @@ -18,14 +18,14 @@ 'max_length' => 8, 'decimals' => 0, 'nullable' => false, - 'test_value' => "237", ), + 'test_value' => 237, ), 'COMPONENT_CODE' => array( 'generic_type' => 'NUMBER', 'sql_type' => array( 'NUMBER', 'INTEGER' ), 'min_length' => 8, 'max_length' => 8, 'decimals' => 0, 'nullable' => false, - 'test_value' => "660", ), + 'test_value' => 660, ), 'QUANTITY' => array( 'generic_type' => 'NUMBER', 'sql_type' => array( 'NUMBER', 'INTEGER', 'SMALLINT' ), 'min_length' => 4, @@ -33,8 +33,9 @@ 'decimals' => 0, 'underflow' => 0, // should be 1, but there was a typo in the spec 'overflow' => 10000, + 'legal_values' => array( 1, 2, 9999 ), 'nullable' => false, - 'test_value' => "456", ), ); + 'test_value' => 456, ), ); }