Skip to content

Commit c70a57d

Browse files
committed
[misc] correcting test for mysql compatibility
1 parent 5601e0e commit c70a57d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/test-ssl.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describe('ssl', function() {
3232
)
3333
.then(() => {
3434
return shareConn.query(
35-
"GRANT ALL PRIVILEGES ON *.* TO 'sslTestUser'@'%' IDENTIFIED BY 'ytoKS@ç%ùed5' " +
35+
"GRANT ALL PRIVILEGES ON *.* TO 'sslTestUser'@'%' " +
3636
((shareConn.info.isMariaDB() && !shareConn.info.hasMinVersion(10, 2, 0)) ||
3737
(!shareConn.info.isMariaDB() && !shareConn.info.hasMinVersion(5, 7, 0))
3838
? ' REQUIRE SSL'
@@ -50,7 +50,7 @@ describe('ssl', function() {
5050
})
5151
.then(() => {
5252
return shareConn.query(
53-
"GRANT ALL PRIVILEGES ON *.* TO 'X509testUser'@'%' IDENTIFIED BY 'éà@d684SQpl¨^' " +
53+
"GRANT ALL PRIVILEGES ON *.* TO 'X509testUser'@'%' " +
5454
((shareConn.info.isMariaDB() && !shareConn.info.hasMinVersion(10, 2, 0)) ||
5555
(!shareConn.info.isMariaDB() && !shareConn.info.hasMinVersion(5, 7, 0))
5656
? ' REQUIRE X509'

0 commit comments

Comments
 (0)