diff options
| -rw-r--r-- | tests/version/version_test.php | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/version/version_test.php b/tests/version/version_test.php index 2e2398bd45..5caad46e10 100644 --- a/tests/version/version_test.php +++ b/tests/version/version_test.php @@ -181,6 +181,11 @@ class phpbb_version_helper_test extends phpbb_test_case  					),  				),  			), +			array( +				'1.1.0', +				array(), +				array(), +			),  		);  	} @@ -286,6 +291,11 @@ class phpbb_version_helper_test extends phpbb_test_case  				),  				'1.1.0-a2',  			), +			array( +				'1.1.0', +				array(), +				null, +			),  		);  	}  | 
