summaryrefslogtreecommitdiff
path: root/ext/sockets/tests/socket_connect_error.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/sockets/tests/socket_connect_error.phpt')
-rw-r--r--ext/sockets/tests/socket_connect_error.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/sockets/tests/socket_connect_error.phpt b/ext/sockets/tests/socket_connect_error.phpt
index 483763aed3..99fa9f511f 100644
--- a/ext/sockets/tests/socket_connect_error.phpt
+++ b/ext/sockets/tests/socket_connect_error.phpt
@@ -16,13 +16,13 @@ display_errors=1
<?php
// Test with no arguments
$server = socket_create();
-
+
// Test with less arguments than required
$server = socket_create(SOCK_STREAM, getprotobyname('tcp'));
-
+
// Test with non integer parameters
$server = socket_create(array(), 1, 1);
-
+
?>
--EXPECTF--
Warning: socket_create() expects exactly 3 parameters, 0 given in %s on line %d