From 916df412f5b6f7fb9bcfb705a3c8c23e35304410 Mon Sep 17 00:00:00 2001 From: Thomas Renes Date: Sat, 8 Jan 2022 16:25:17 +0100 Subject: Fix various typos and spelling errors in documentation, comments and code. (#4134) --- tests/app/Models/SearchTest.php | 2 +- tests/lib/Minz/MigratorTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/app/Models/SearchTest.php b/tests/app/Models/SearchTest.php index 2efdffda9..bef548b02 100644 --- a/tests/app/Models/SearchTest.php +++ b/tests/app/Models/SearchTest.php @@ -39,7 +39,7 @@ class SearchTest extends PHPUnit\Framework\TestCase { * @param string $intitle_value * @param string|null $search_value */ - public function test__construct_whenInputContainsIntitle_setsIntitlePropery($input, $intitle_value, $search_value) { + public function test__construct_whenInputContainsIntitle_setsIntitleProperty($input, $intitle_value, $search_value) { $search = new FreshRSS_Search($input); $this->assertEquals($intitle_value, $search->getIntitle()); $this->assertEquals($search_value, $search->getSearch()); diff --git a/tests/lib/Minz/MigratorTest.php b/tests/lib/Minz/MigratorTest.php index dec1d0176..6cc4b4a94 100644 --- a/tests/lib/Minz/MigratorTest.php +++ b/tests/lib/Minz/MigratorTest.php @@ -291,7 +291,7 @@ class MigratorTest extends TestCase $this->assertTrue($result); $versions = file_get_contents($applied_migrations_path); - // if the order changes, it probably means the first versions comparaison + // if the order changes, it probably means the first versions comparison // test doesn't work anymore $this->assertSame("2019_12_23_Baz\n2019_12_22_FooBar", $versions); } -- cgit v1.2.3