From e8b51684bf793b1463ae4ce9563b100f77fb719d Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Mon, 22 Jan 2024 17:29:12 +0100 Subject: [PATCH] Re-enable mysqli type inference tests --- tests/default/DbaInferenceTest.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/default/DbaInferenceTest.php b/tests/default/DbaInferenceTest.php index 0aa792d1..5f72b793 100644 --- a/tests/default/DbaInferenceTest.php +++ b/tests/default/DbaInferenceTest.php @@ -45,9 +45,8 @@ public function dataFileAsserts(): iterable yield from $this->gatherAssertTypes(__DIR__ . '/data/pdo-column-count.php'); yield from $this->gatherAssertTypes(__DIR__ . '/data/pdo-stmt-execute.php'); - // XXX skip mysqli tests for now - // yield from $this->gatherAssertTypes(__DIR__ . '/data/mysqli.php'); - // yield from $this->gatherAssertTypes(__DIR__ . '/data/mysqli-union-result.php'); + yield from $this->gatherAssertTypes(__DIR__ . '/data/mysqli.php'); + yield from $this->gatherAssertTypes(__DIR__ . '/data/mysqli-union-result.php'); yield from $this->gatherAssertTypes(__DIR__ . '/data/mysqli-escape.php');