Skip to content

Commit

Permalink
Fix typos in mysql tests
Browse files Browse the repository at this point in the history
%d because of line endings on Windows
  • Loading branch information
kamil-tekiela authored and nikic committed Dec 3, 2020
1 parent 8d2a1c8 commit 53f7bdd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ext/mysqli/tests/mysqli_character_set_name.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--TEST--
mysqli_chararcter_set_name(), mysql_client_encoding() [alias]
mysqli_character_set_name(), mysql_client_encoding() [alias]
--SKIPIF--
<?php
require_once('skipif.inc');
Expand Down
6 changes: 3 additions & 3 deletions ext/mysqli/tests/mysqli_character_set_name_oo.phpt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
--TEST--
mysqli_chararcter_set_name(), mysql_client_encoding() [alias]
mysqli_character_set_name(), mysql_client_encoding() [alias]
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifconnectfailure.inc');
require_once('skipif.inc');
require_once('skipifconnectfailure.inc');
?>
--FILE--
<?php
Expand Down
4 changes: 2 additions & 2 deletions ext/pdo/tests/bug_69356.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ $stmt = $db->query("
");
var_dump($stmt->debugDumpParams());
?>
--EXPECT--
SQL: [834]
--EXPECTF--
SQL: [%d]
SELECT '
Dumps the information contained by a prepared statement directly on the output. It will provide the SQL query in use, the number of parameters used (Params), the list of parameters, with their name, type (paramtype) as an integer, their key name or position, and the position in the query (if this is supported by the PDO driver, otherwise, it will be -1).
This is a debug function, which dump directly the data on the normal output.
Expand Down

0 comments on commit 53f7bdd

Please sign in to comment.