From 47d144d511f8cc0c045fa8bebf6fbadc040d84de Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Mon, 18 Sep 2017 17:32:35 +0200 Subject: Tests: Use is instead of ok for improved debug output Signed-off-by: Florian Pritz --- application/test/tests/api_v2/test_file_upload.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/test/tests/api_v2/test_file_upload.php b/application/test/tests/api_v2/test_file_upload.php index cb2f81b74..e8717b074 100644 --- a/application/test/tests/api_v2/test_file_upload.php +++ b/application/test/tests/api_v2/test_file_upload.php @@ -50,8 +50,8 @@ class test_file_upload extends common { $data[] = $this->SendHTTPRequest("GET", $url, ''); } $this->t->ok($data[0] !== $data[1], 'Returned file contents should differ'); - $this->t->ok($data[0] === file_get_contents("data/tests/message1.bin"), "Returned correct data for file 1"); - $this->t->ok($data[1] === file_get_contents("data/tests/message2.bin"), "Returned correct data for file 2"); + $this->t->is($data[0], file_get_contents("data/tests/message1.bin"), "Returned correct data for file 1"); + $this->t->is($data[1], file_get_contents("data/tests/message2.bin"), "Returned correct data for file 2"); } public function test_upload_uploadNothing() -- cgit v1.2.3-24-g4f1b