From 1436dcbab503218fefe6eb2e19988d936a4db69c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 16 Apr 2023 10:37:50 +0200 Subject: [PATCH] sceneconverter: typos in the test. --- src/Magnum/SceneTools/Test/SceneConverterTest.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Magnum/SceneTools/Test/SceneConverterTest.cpp b/src/Magnum/SceneTools/Test/SceneConverterTest.cpp index a587d16cd..daf995f30 100644 --- a/src/Magnum/SceneTools/Test/SceneConverterTest.cpp +++ b/src/Magnum/SceneTools/Test/SceneConverterTest.cpp @@ -800,19 +800,19 @@ const struct { "PluginManager::Manager::load(): plugin NonexistentImporter is not static and was not found in nonexistent/importers\n" "Available importer plugins: "}, {"can't open a file", {InPlaceInit, { - "noexistent.ffs", + "nonexistent.ffs", Utility::Path::join(SCENETOOLS_TEST_OUTPUT_DIR, "SceneConverterTestFiles/whatever.ply") }}, "AnySceneImporter", nullptr, nullptr, nullptr, - "Trade::AnySceneImporter::openFile(): cannot determine the format of noexistent.ffs\n" - "Cannot open file noexistent.ffs\n"}, + "Trade::AnySceneImporter::openFile(): cannot determine the format of nonexistent.ffs\n" + "Cannot open file nonexistent.ffs\n"}, {"can't map a file", {InPlaceInit, { - "noexistent.ffs", "--map", + "nonexistent.ffs", "--map", Utility::Path::join(SCENETOOLS_TEST_OUTPUT_DIR, "SceneConverterTestFiles/whatever.ply") }}, "AnySceneImporter", nullptr, nullptr, nullptr, - "Utility::Path::mapRead(): can't open noexistent.ffs: error 2 (No such file or directory)\n" - "Cannot memory-map file noexistent.ffs\n"}, + "Utility::Path::mapRead(): can't open nonexistent.ffs: error 2 (No such file or directory)\n" + "Cannot memory-map file nonexistent.ffs\n"}, {"no meshes found for concatenation", {InPlaceInit, { "--concatenate-meshes", Utility::Path::join(SCENETOOLS_TEST_DIR, "SceneConverterTestFiles/empty.gltf"),