From d6fc30626cd6496477c093dfa6572ff8e80b405b Mon Sep 17 00:00:00 2001 From: Ben Thomson Date: Sun, 19 Jan 2020 22:41:43 +0800 Subject: [PATCH] Un-mark skipped test - seems to be working --- tests/unit/plugins/database/HasManyModelTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/unit/plugins/database/HasManyModelTest.php b/tests/unit/plugins/database/HasManyModelTest.php index 9bb165e39..9a1def095 100644 --- a/tests/unit/plugins/database/HasManyModelTest.php +++ b/tests/unit/plugins/database/HasManyModelTest.php @@ -63,8 +63,6 @@ class HasManyModelTest extends PluginTestCase public function testGetRelationValue() { - $this->markTestSkipped('Marked as \'skipped\' for further investigation'); - Model::unguard(); $author = Author::create(['name' => 'Stevie']); $post1 = Post::create(['title' => "First post", 'author_id' => $author->id]);