From dc9441d9252141880dc192a1c35cc3286a42021c Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Sun, 10 Sep 2023 17:32:56 +0200 Subject: [PATCH] SettingsControllerTest: Fix assertion order --- .../Controllers/SettingsControllerTest.php | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/tests/Unit/Controllers/SettingsControllerTest.php b/tests/Unit/Controllers/SettingsControllerTest.php index 661f7bdb..7d111bdb 100644 --- a/tests/Unit/Controllers/SettingsControllerTest.php +++ b/tests/Unit/Controllers/SettingsControllerTest.php @@ -744,8 +744,8 @@ class SettingsControllerTest extends ControllerTest $this->controller->saveIfsgCertificate($this->request); - $this->assertEquals($this->user->license->ifsg_certificate_light, true); - $this->assertEquals($this->user->license->ifsg_certificate, false); + $this->assertEquals(true, $this->user->license->ifsg_certificate_light); + $this->assertEquals(false, $this->user->license->ifsg_certificate); } /** @@ -770,8 +770,8 @@ class SettingsControllerTest extends ControllerTest $this->controller->saveIfsgCertificate($this->request); - $this->assertEquals($this->user->license->ifsg_certificate_light, false); - $this->assertEquals($this->user->license->ifsg_certificate, false); + $this->assertEquals(false, $this->user->license->ifsg_certificate_light); + $this->assertEquals(false, $this->user->license->ifsg_certificate); } /** @@ -794,8 +794,8 @@ class SettingsControllerTest extends ControllerTest $this->controller->saveIfsgCertificate($this->request); - $this->assertEquals($this->user->license->ifsg_certificate_light, false); - $this->assertEquals($this->user->license->ifsg_certificate, true); + $this->assertEquals(false, $this->user->license->ifsg_certificate_light); + $this->assertEquals(true, $this->user->license->ifsg_certificate); } /** @@ -819,8 +819,8 @@ class SettingsControllerTest extends ControllerTest $this->controller->saveIfsgCertificate($this->request); - $this->assertEquals($this->user->license->ifsg_certificate_light, false); - $this->assertEquals($this->user->license->ifsg_certificate, true); + $this->assertEquals(false, $this->user->license->ifsg_certificate_light); + $this->assertEquals(true, $this->user->license->ifsg_certificate); } /** @@ -830,7 +830,7 @@ class SettingsControllerTest extends ControllerTest { $menu = $this->controller->settingsMenu(); $this->assertArrayHasKey('http://localhost/settings/profile', $menu); - $this->assertEquals($menu['http://localhost/settings/profile'], 'settings.profile'); + $this->assertEquals('settings.profile', $menu['http://localhost/settings/profile']); } /** @@ -840,7 +840,7 @@ class SettingsControllerTest extends ControllerTest { $menu = $this->controller->settingsMenu(); $this->assertArrayHasKey('http://localhost/settings/password', $menu); - $this->assertEquals($menu['http://localhost/settings/password'], 'settings.password'); + $this->assertEquals('settings.password', $menu['http://localhost/settings/password']); } /** @@ -850,7 +850,7 @@ class SettingsControllerTest extends ControllerTest { $menu = $this->controller->settingsMenu(); $this->assertArrayHasKey('http://localhost/settings/language', $menu); - $this->assertEquals($menu['http://localhost/settings/language'], 'settings.language'); + $this->assertEquals('settings.language', $menu['http://localhost/settings/language']); } /** @@ -865,13 +865,13 @@ class SettingsControllerTest extends ControllerTest $menu = $this->controller->settingsMenu(); $this->assertArrayHasKey('http://localhost/settings/oauth', $menu); - $this->assertEquals($menu['http://localhost/settings/oauth'], ['title' => 'settings.oauth', 'hidden' => false]); + $this->assertEquals(['title' => 'settings.oauth', 'hidden' => false], $menu['http://localhost/settings/oauth']); config(['oauth' => $providersHidden]); $menu = $this->controller->settingsMenu(); $this->assertArrayHasKey('http://localhost/settings/oauth', $menu); - $this->assertEquals($menu['http://localhost/settings/oauth'], ['title' => 'settings.oauth', 'hidden' => true]); + $this->assertEquals(['title' => 'settings.oauth', 'hidden' => true], $menu['http://localhost/settings/oauth']); } /** @@ -895,7 +895,7 @@ class SettingsControllerTest extends ControllerTest $menu = $this->controller->settingsMenu(); $this->assertArrayHasKey('http://localhost/settings/certificates', $menu); - $this->assertEquals($menu['http://localhost/settings/certificates'], 'settings.certificates'); + $this->assertEquals('settings.certificates', $menu['http://localhost/settings/certificates']); } /**