From 3183f613b5a7af54885f79c244217ff4fdce6636 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 13 Nov 2013 11:55:10 +0100 Subject: [PATCH] Fix: inexistent -> nonexistent. No public change, only tests. --- src/Plugins/TgaImporter/Test/TgaImporterTest.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Plugins/TgaImporter/Test/TgaImporterTest.cpp b/src/Plugins/TgaImporter/Test/TgaImporterTest.cpp index d371e55d3..67dd92e7a 100644 --- a/src/Plugins/TgaImporter/Test/TgaImporterTest.cpp +++ b/src/Plugins/TgaImporter/Test/TgaImporterTest.cpp @@ -39,7 +39,7 @@ class TgaImporterTest: public TestSuite::Tester { public: TgaImporterTest(); - void openInexistent(); + void openNonexistent(); void openShort(); void paletted(); void compressed(); @@ -55,7 +55,7 @@ class TgaImporterTest: public TestSuite::Tester { }; TgaImporterTest::TgaImporterTest() { - addTests({&TgaImporterTest::openInexistent, + addTests({&TgaImporterTest::openNonexistent, &TgaImporterTest::openShort, &TgaImporterTest::paletted, &TgaImporterTest::compressed, @@ -70,13 +70,13 @@ TgaImporterTest::TgaImporterTest() { &TgaImporterTest::file}); } -void TgaImporterTest::openInexistent() { +void TgaImporterTest::openNonexistent() { std::ostringstream debug; Error::setOutput(&debug); TgaImporter importer; - CORRADE_VERIFY(!importer.openFile("inexistent.file")); - CORRADE_COMPARE(debug.str(), "Trade::TgaImporter::openFile(): cannot open file inexistent.file\n"); + CORRADE_VERIFY(!importer.openFile("nonexistent.file")); + CORRADE_COMPARE(debug.str(), "Trade::TgaImporter::openFile(): cannot open file nonexistent.file\n"); } void TgaImporterTest::openShort() {