From 1f4d4eed6f9e6e95d4d5b01d36e7e89ff5ea33ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Almada?= Date: Mon, 27 Feb 2017 01:57:45 -0300 Subject: [PATCH] adapt tests as order from unfolded ast is deterministic now --- tests/phpt/property_accessors.phpt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/phpt/property_accessors.phpt b/tests/phpt/property_accessors.phpt index 140d5f7..d5d3234 100644 --- a/tests/phpt/property_accessors.phpt +++ b/tests/phpt/property_accessors.phpt @@ -81,14 +81,14 @@ namespace App; class Sprocket { private $type { - get :string { - return $this->type; - } - set(string $value) { $this->type = $value; } + get :string { + return $this->type; + } + unset { $this->type = ''; }