fix parsing php5 parameters

This commit is contained in:
z7zmey
2018-02-12 12:09:56 +02:00
parent f0411890e6
commit bf90803ef3
4 changed files with 190 additions and 166 deletions

View File

@@ -343,6 +343,6 @@ func TestPhp5ParameterNode(t *testing.T) {
},
}
actual, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
actual, _, _ := php5.Parse(bytes.NewBufferString(src), "test.php")
assertEqual(t, expected, actual)
}