summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-09-15 01:15:55 +0200
committerCarl Hetherington <cth@carlh.net>2022-09-15 01:15:55 +0200
commitc103d8c1306e5fb3937b3a6c430a3fff32653fa3 (patch)
tree60609a21e09595990e38d33fa5df2f32a49fe8b9 /test
parent41bab4e95911d3ae99081556db5fe1d29ac008b5 (diff)
Fix some spelling mistakes (mostly in comments).
Diffstat (limited to 'test')
-rw-r--r--test/audio_mapping_test.cc2
-rw-r--r--test/config_test.cc2
-rw-r--r--test/find_missing_test.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/test/audio_mapping_test.cc b/test/audio_mapping_test.cc
index 8599c6af5..ca58c03ca 100644
--- a/test/audio_mapping_test.cc
+++ b/test/audio_mapping_test.cc
@@ -94,7 +94,7 @@ BOOST_AUTO_TEST_CASE (audio_mapping_guess_test)
guess_check ("more_Lss_s.wav", 4);
guess_check ("other_Rss.aiff", 5);
- /* Only the filename should be taken into acccount */
+ /* Only the filename should be taken into account */
guess_check ("-Lfe-/foo_L.wav", 0);
}
diff --git a/test/config_test.cc b/test/config_test.cc
index fc3a27601..e90550085 100644
--- a/test/config_test.cc
+++ b/test/config_test.cc
@@ -177,7 +177,7 @@ BOOST_AUTO_TEST_CASE (config_upgrade_test)
boost::filesystem::copy_file ("test/data/2.14.cinemas.xml", dir / "cinemas.xml");
Config::instance();
try {
- /* This will fail to write cinemas.xml since the link is to a non-existant directory */
+ /* This will fail to write cinemas.xml since the link is to a non-existent directory */
Config::instance()->write();
} catch (...) {}
diff --git a/test/find_missing_test.cc b/test/find_missing_test.cc
index 3e64bede4..51ae5800c 100644
--- a/test/find_missing_test.cc
+++ b/test/find_missing_test.cc
@@ -55,7 +55,7 @@ BOOST_AUTO_TEST_CASE (find_missing_test_with_single_files)
});
film->write_metadata ();
- /* Move the content somewhere eles */
+ /* Move the content somewhere else */
auto moved = path("build/test") / path(name + "_moved");
remove_all (moved);
rename (content_dir, moved);