diff --git a/test/functional/pdo_sqlsrv/pdo_ae_insert_numeric.phpt b/test/functional/pdo_sqlsrv/pdo_ae_insert_numeric.phpt index e40c11dfb..60273f342 100644 --- a/test/functional/pdo_sqlsrv/pdo_ae_insert_numeric.phpt +++ b/test/functional/pdo_sqlsrv/pdo_ae_insert_numeric.phpt @@ -69,8 +69,8 @@ c_rand: 922337203685479936 Testing decimal\(18,5\): -----Encrypted default type is compatible with encrypted decimal\(18,5\)----- -c_det: -9223372036854.80000 -c_rand: 9223372036854.80000 +c_det: -9223372036854\.80000 +c_rand: 9223372036854\.80000 Testing numeric\(10,5\): -----Encrypted default type is compatible with encrypted numeric\(10,5\)----- diff --git a/test/functional/pdo_sqlsrv/pdo_test_non_LOB_types.phpt b/test/functional/pdo_sqlsrv/pdo_test_non_LOB_types.phpt index ecd6ff86d..378662358 100644 --- a/test/functional/pdo_sqlsrv/pdo_test_non_LOB_types.phpt +++ b/test/functional/pdo_sqlsrv/pdo_test_non_LOB_types.phpt @@ -73,10 +73,10 @@ Array \[3\] => 255 \[4\] => 1 \[5\] => 9999999999999999999999999999999999999 - \[6\] => 922337203685477.5807 - \[7\] => 214748.3647 - \[8\] => 1.79E\+308 - \[9\] => (1.18E-38|1.1799999E-38) + \[6\] => 922337203685477\.5807 + \[7\] => 214748\.3647 + \[8\] => 1\.79E\+308 + \[9\] => (1\.18E-38|1\.1799999E-38) \[10\] => 1968-12-12 16:20:00.000 \[11\] => \) \ No newline at end of file diff --git a/test/functional/sqlsrv/srv_007_login_timeout.phpt b/test/functional/sqlsrv/srv_007_login_timeout.phpt index c34a3c032..8145c370f 100644 --- a/test/functional/sqlsrv/srv_007_login_timeout.phpt +++ b/test/functional/sqlsrv/srv_007_login_timeout.phpt @@ -17,7 +17,7 @@ $timeout = 20; $maxAttempts = 3; $numAttempts = 0; -// The difference in time elapsed is platform dependent, and in some distros, such as Alpine or Suse, extra delay may be caused by the attempts to resolve non-existant hostnames +// The difference in time elapsed is platform dependent, and in some distros, such as Alpine or Suse, extra delay may be caused by the attempts to resolve non-existent hostnames // Set leeway to 2 seconds to allow some room of such errors $leeway = 2.0; $missed = false; @@ -41,7 +41,7 @@ do { echo "Connection failed at $elapsed secs. Leeway is $leeway sec but the difference is $diff\n"; } else { // The test will fail but this helps us decide if this test should be redesigned - echo "$numAttempts: $diff\n"; + echo "Attempts: $numAttempts, Time difference: $diff\n"; sleep(5); } }