From c3ea7333010057204c88d0c0f45d4a42bb506f41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Ko=CC=88ngeter?= Date: Wed, 25 Nov 2020 08:03:04 +0100 Subject: [PATCH] Changed method call --- tests/QrReaderTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/QrReaderTest.php b/tests/QrReaderTest.php index 8d48ec3..b4c1367 100644 --- a/tests/QrReaderTest.php +++ b/tests/QrReaderTest.php @@ -13,6 +13,6 @@ public function testText1() $image = __DIR__ . "/qrcodes/hello_world.png"; $qrcode = new QrReader($image); - self::assertSame("Hello world!", $qrcode->text()); + $this->assertSame("Hello world!", $qrcode->text()); } }