From 5e4812ba14f6b10e47ab7b9f8ef27dae9385d340 Mon Sep 17 00:00:00 2001 From: Deon George Date: Sun, 8 Aug 2021 09:48:34 +1000 Subject: [PATCH] DB has already been seeded already --- tests/Feature/RoutingTest.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/Feature/RoutingTest.php b/tests/Feature/RoutingTest.php index 81d72e5..692231e 100644 --- a/tests/Feature/RoutingTest.php +++ b/tests/Feature/RoutingTest.php @@ -29,7 +29,7 @@ class RoutingTest extends TestCase */ public function test_zc() { - $this->seed(NodeHierarchy::class); + //$this->seed(NodeHierarchy::class); $nodes = $this->zone(); $this->assertEquals(52,$nodes->count()); @@ -103,7 +103,7 @@ class RoutingTest extends TestCase */ public function test_rc() { - $this->seed(NodeHierarchy::class); + //$this->seed(NodeHierarchy::class); // Pick ZC without any session info - we have 0 children $ao = Address::findFTN('100:1/0@domain-a'); @@ -150,7 +150,7 @@ class RoutingTest extends TestCase */ public function test_nc() { - $this->seed(NodeHierarchy::class); + //$this->seed(NodeHierarchy::class); // Pick a HC without any session info - we have 0 children $ao = Address::findFTN('100:20/0@domain-a'); @@ -184,7 +184,7 @@ class RoutingTest extends TestCase */ public function test_hc() { - $this->seed(NodeHierarchy::class); + //$this->seed(NodeHierarchy::class); // Pick a HC without any session info - we have 0 children $ao = Address::findFTN('100:20/2000@domain-a'); @@ -205,7 +205,7 @@ class RoutingTest extends TestCase public function test_node() { - $this->seed(NodeHierarchy::class); + //$this->seed(NodeHierarchy::class); // Node with session details still doesnt have any children $ao = Address::findFTN('100:20/2001@domain-a');