Skip to content

Commit

Permalink
Yep
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmitchell committed May 10, 2024
1 parent 29dcafa commit 69e40b5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Forms/FormRepositoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ public function it_registers_config()
],
]);

$this->assertNotNull(Form::getConfigFor('test_form'));
$this->assertEmpty(Form::getConfigFor('another_form'));
$this->assertNotNull(FormAPI::getConfigFor('test_form'));
$this->assertEmpty(FormAPI::getConfigFor('another_form'));
}

/** @test */
Expand All @@ -83,7 +83,7 @@ public function it_registers_wildcard_config()
],
]);

$this->assertNotNull(Form::getConfigFor('test_form'));
$this->assertNotNull(Form::getConfigFor('another_form'));
$this->assertNotNull(FormAPI::getConfigFor('test_form'));
$this->assertNotNull(FormAPI::getConfigFor('another_form'));
}
}

0 comments on commit 69e40b5

Please sign in to comment.