SettingsControllerTest: Fix assertion order

This commit is contained in:
Igor Scheller 2023-09-10 17:32:56 +02:00 committed by Michael Weimann
parent 8438b8dc51
commit dc9441d925
1 changed files with 14 additions and 14 deletions

View File

@ -744,8 +744,8 @@ class SettingsControllerTest extends ControllerTest
$this->controller->saveIfsgCertificate($this->request); $this->controller->saveIfsgCertificate($this->request);
$this->assertEquals($this->user->license->ifsg_certificate_light, true); $this->assertEquals(true, $this->user->license->ifsg_certificate_light);
$this->assertEquals($this->user->license->ifsg_certificate, false); $this->assertEquals(false, $this->user->license->ifsg_certificate);
} }
/** /**
@ -770,8 +770,8 @@ class SettingsControllerTest extends ControllerTest
$this->controller->saveIfsgCertificate($this->request); $this->controller->saveIfsgCertificate($this->request);
$this->assertEquals($this->user->license->ifsg_certificate_light, false); $this->assertEquals(false, $this->user->license->ifsg_certificate_light);
$this->assertEquals($this->user->license->ifsg_certificate, false); $this->assertEquals(false, $this->user->license->ifsg_certificate);
} }
/** /**
@ -794,8 +794,8 @@ class SettingsControllerTest extends ControllerTest
$this->controller->saveIfsgCertificate($this->request); $this->controller->saveIfsgCertificate($this->request);
$this->assertEquals($this->user->license->ifsg_certificate_light, false); $this->assertEquals(false, $this->user->license->ifsg_certificate_light);
$this->assertEquals($this->user->license->ifsg_certificate, true); $this->assertEquals(true, $this->user->license->ifsg_certificate);
} }
/** /**
@ -819,8 +819,8 @@ class SettingsControllerTest extends ControllerTest
$this->controller->saveIfsgCertificate($this->request); $this->controller->saveIfsgCertificate($this->request);
$this->assertEquals($this->user->license->ifsg_certificate_light, false); $this->assertEquals(false, $this->user->license->ifsg_certificate_light);
$this->assertEquals($this->user->license->ifsg_certificate, true); $this->assertEquals(true, $this->user->license->ifsg_certificate);
} }
/** /**
@ -830,7 +830,7 @@ class SettingsControllerTest extends ControllerTest
{ {
$menu = $this->controller->settingsMenu(); $menu = $this->controller->settingsMenu();
$this->assertArrayHasKey('http://localhost/settings/profile', $menu); $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(); $menu = $this->controller->settingsMenu();
$this->assertArrayHasKey('http://localhost/settings/password', $menu); $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(); $menu = $this->controller->settingsMenu();
$this->assertArrayHasKey('http://localhost/settings/language', $menu); $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(); $menu = $this->controller->settingsMenu();
$this->assertArrayHasKey('http://localhost/settings/oauth', $menu); $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]); config(['oauth' => $providersHidden]);
$menu = $this->controller->settingsMenu(); $menu = $this->controller->settingsMenu();
$this->assertArrayHasKey('http://localhost/settings/oauth', $menu); $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(); $menu = $this->controller->settingsMenu();
$this->assertArrayHasKey('http://localhost/settings/certificates', $menu); $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']);
} }
/** /**