diff options
author | Davey Shafik <me@daveyshafik.com> | 2016-02-02 12:31:12 -0500 |
---|---|---|
committer | Davey Shafik <me@daveyshafik.com> | 2016-02-02 12:50:51 -0500 |
commit | c5da80f7b8bef294c835ac52706ab4a24934b04a (patch) | |
tree | 0f3ce3bce7fd22d5e6137f9de83c344e625932c8 | |
parent | 0cfd8f0163abf577bcc3a0407a707e736b92690e (diff) | |
download | php7-mysql-shim-c5da80f7b8bef294c835ac52706ab4a24934b04a.zip php7-mysql-shim-c5da80f7b8bef294c835ac52706ab4a24934b04a.tar.gz php7-mysql-shim-c5da80f7b8bef294c835ac52706ab4a24934b04a.tar.bz2 |
Add forward-compatible annotation
-rw-r--r-- | tests/MySqlShimTest.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/MySqlShimTest.php b/tests/MySqlShimTest.php index 38259aa..736993b 100644 --- a/tests/MySqlShimTest.php +++ b/tests/MySqlShimTest.php @@ -185,10 +185,13 @@ class MySqlShimTest extends \PHPUnit_Framework_TestCase mysql_free_result($result); } + /** + * @requires PHP < 7.0.0 + */ public function test_mysql_unbuffered_query_close_legacy() { if (!version_compare(PHP_VERSION, '7.0.0', '<')) { - $this->markTestSkipped("PHP < 7.0.0 is required"); + $this->markTestIncomplete("PHP < 7.0.0 is required"); } $conn = $this->getConnection("shim_test"); |