This is an automated email from the ASF dual-hosted git repository.
xiazcy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
The following commit(s) were added to refs/heads/master by this push:
new d6e942d7c8 CTR js test fix
d6e942d7c8 is described below
commit d6e942d7c8b215c757a600d19e48961a0da2bac0
Author: Yang Xia <[email protected]>
AuthorDate: Mon Apr 8 22:38:01 2024 -0700
CTR js test fix
---
.../gremlin-javascript/test/integration/sasl-authentication-tests.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/gremlin-javascript/src/main/javascript/gremlin-javascript/test/integration/sasl-authentication-tests.js
b/gremlin-javascript/src/main/javascript/gremlin-javascript/test/integration/sasl-authentication-tests.js
index 47de8b3984..3d39c20c39 100644
---
a/gremlin-javascript/src/main/javascript/gremlin-javascript/test/integration/sasl-authentication-tests.js
+++
b/gremlin-javascript/src/main/javascript/gremlin-javascript/test/integration/sasl-authentication-tests.js
@@ -52,7 +52,7 @@ describe('DriverRemoteConnection', function () {
});
it('should be able to send multiple requests concurrently with valid
credentials and parse the response', async function () {
- connection =
helper.getSecureConnectionWithPlainTextSaslAuthenticator(null, 'stephen',
'password');
+ connection = getSecureConnectionWithPlainTextSaslAuthenticator(null,
'stephen', 'password');
const submissions = await Promise.all(
Array.from({ length: 10 }).map(() => connection.submit(new
Bytecode().addStep('V', []).addStep('tail', []))),