Skip to content

Commit

Permalink
Merge pull request #195 from conedevelopment/szepeviktor-patch-1
Browse files Browse the repository at this point in the history
fix typo in NavigationTest
  • Loading branch information
iamgergo authored Jan 25, 2024
2 parents baf1506 + 77bee98 commit 21eb496
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Navigation/NavigationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function test_a_navigation_registry_can_register_locations(): void
$this->assertSame(['sidebar' => $location], $this->registry->locations());
}

public function test_a_naviagation_location_has_items(): void
public function test_a_navigation_location_has_items(): void
{
$location = $this->registry->location('sidebar');

Expand All @@ -44,7 +44,7 @@ public function test_a_naviagation_location_has_items(): void
$this->assertEmpty($location->all());
}

public function test_a_naviagation_location_has_groups(): void
public function test_a_navigation_location_has_groups(): void
{
$location = $this->registry->location('sidebar');

Expand All @@ -57,7 +57,7 @@ public function test_a_naviagation_location_has_groups(): void
);
}

public function test_a_naviagation_item_has_items(): void
public function test_a_navigation_item_has_items(): void
{
$location = $this->registry->location('sidebar');

Expand Down

0 comments on commit 21eb496

Please sign in to comment.