From 6ac64e7b5e1a3aa340322424d1ed1fc0637628cb Mon Sep 17 00:00:00 2001 From: DariusIII Date: Wed, 12 Apr 2017 13:42:54 +0200 Subject: [PATCH] Rename references to Trakt into OMDb --- misc/testing/Tests/test_omdb_API.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/testing/Tests/test_omdb_API.php b/misc/testing/Tests/test_omdb_API.php index 12a448ff4..7e222fd55 100644 --- a/misc/testing/Tests/test_omdb_API.php +++ b/misc/testing/Tests/test_omdb_API.php @@ -9,8 +9,8 @@ $omdb = new OMDbAPI(); if (!empty($argv[1])) { - // Test if your Trakt API key and configuration are working - // If it works you should get a printed array of the show/season/episode entered + // Test if your OMDb API key and configuration are working + // If it works you should get a printed array of the show entered // Search for a show $series = $omdb->search((string)$argv[1], 'series'); @@ -30,5 +30,5 @@ if (!empty($argv[1])) { exit(ColorCLI::error('Error retrieving OMDb API data.')); } } else { - exit(ColorCLI::error('Invalid arguments. This script requires a text string (show name).')); + exit(ColorCLI::error('Invalid arguments. This script requires a text string (show name).')); }