Skip to content

Commit fe8d7cf

Browse files
committed
Rename one pair of tags in examples test
To make `maxTransactionRetryTime` config have unique tags.
1 parent 90dac27 commit fe8d7cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/v1/examples.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@ describe('examples', function() {
120120

121121
it('should be able to configure maximum transaction retry time', function () {
122122
var neo4j = neo4jv1;
123-
// tag::configuration[]
123+
// tag::configuration-transaction-retry-time[]
124124
var maxRetryTimeMs = 45 * 1000; // 45 seconds
125125
var driver = neo4j.driver('bolt://localhost:7687', neo4j.auth.basic('neo4j', 'neo4j'), {maxTransactionRetryTime: maxRetryTimeMs});
126-
//end::configuration[]
126+
//end::configuration-transaction-retry-time[]
127127

128128
var session = driver.session();
129129
expect(session._transactionExecutor._maxRetryTimeMs).toBe(maxRetryTimeMs);

0 commit comments

Comments
 (0)