From 2713ab12abd48801b1f713171e84c1a3482478aa Mon Sep 17 00:00:00 2001 From: Jenny Tam Date: Mon, 21 Aug 2017 13:02:46 -0700 Subject: [PATCH] Fixed minor issues --- test/functional/sqlsrv/test_max_length.phpt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/sqlsrv/test_max_length.phpt b/test/functional/sqlsrv/test_max_length.phpt index 20abcf67..b52c2970 100644 --- a/test/functional/sqlsrv/test_max_length.phpt +++ b/test/functional/sqlsrv/test_max_length.phpt @@ -7,7 +7,7 @@ Maximum length outputs from stored procs for string types (nvarchar, varchar, an set_time_limit(0); -$inValue1 = str_repeat( "A", 3999 ); +$inValue1 = str_repeat( 'A', 3999 ); $outValue1 = "TEST"; @@ -101,7 +101,7 @@ print_r( strlen( $outValue1 )); echo "\n"; print_r( substr( $outValue1, -2, 2 )); -sqlsrv_close( $conn ); // True +sqlsrv_close( $conn ); ?> --EXPECT--