1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fixed failed test in extension skeleton

This commit is contained in:
Frago9876543210
2021-08-01 13:52:39 +03:00
committed by Nikita Popov
parent 6e91a820d8
commit 9fb93e8ed1

View File

@@ -1,11 +1,11 @@
--TEST--
%EXTNAME%_test2() Basic test
test2() Basic test
--EXTENSIONS--
%EXTNAME%
--FILE--
<?php
var_dump(%EXTNAME%_test2());
var_dump(%EXTNAME%_test2('PHP'));
var_dump(test2());
var_dump(test2('PHP'));
?>
--EXPECT--
string(11) "Hello World"