From 2ae16aa89f74e38aca0245dec9d106ad729b81df Mon Sep 17 00:00:00 2001 From: Fabian Beiner Date: Sun, 24 Aug 2014 17:25:10 +0200 Subject: [PATCH] Fixed false positive. --- test/imdb.tests.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/imdb.tests.php b/test/imdb.tests.php index 51dfa06..5de7ba9 100644 --- a/test/imdb.tests.php +++ b/test/imdb.tests.php @@ -75,7 +75,7 @@ echo '

Sites as URL: ' . $oIMDB->getSitesAsUrl('_blank') . '

'; echo '

Tagline: ' . $oIMDB->getTagline() . '

'; echo '

Title: ' . $oIMDB->getTitle() . '

'; - if ($oIMDB->getTrailerAsUrl() != 'n/A') { + if ($oIMDB->getTrailerAsUrl() != $oIMDB->strNotFound) { echo '

Trailer: ' . $oIMDB->getTrailerAsUrl() . '

'; } else {