diff --git a/acceptance/WcmsTestsUrlAliasCest.php b/acceptance/WcmsTestsUrlAliasCest.php index aa955265e09dbe1849aa0d109e8abcc54c998ff0..1f8f17a4900b41e65f0069a01ad1a6771b32efa2 100644 --- a/acceptance/WcmsTestsUrlAliasCest.php +++ b/acceptance/WcmsTestsUrlAliasCest.php @@ -285,9 +285,11 @@ class WcmsTestsUrlAliasCest { } } - // Step through each of the nodes used and delete them. - foreach ($this->nodesUsed as $node) { + // Step through each of the nodes used and delete them + // as well as delete it from the nodes used array. + foreach ($this->nodesUsed as $title => $node) { $node->delete(); + unset($this->nodesUsed[$title]); } }