Skip to content

Commit 9175980

Browse files
authored
rename begin transaction test to avoid duplicate names (#1313)
1 parent 1a2cc3b commit 9175980

13 files changed

+13
-13
lines changed

packages/bolt-connection/test/bolt/bolt-protocol-v4x0.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ describe('#unit BoltProtocolV4x0', () => {
117117
expect(protocol.flushes).toEqual([false, true])
118118
})
119119

120-
it('should begin a transaction', () => {
120+
it('should begin a transaction with set database name', () => {
121121
const database = 'testdb'
122122
const bookmarks = new Bookmarks([
123123
'neo4j:bookmark:v1:tx1',

packages/bolt-connection/test/bolt/bolt-protocol-v4x3.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ describe('#unit BoltProtocolV4x3', () => {
137137
expect(protocol.observers).toEqual([observer, observer])
138138
expect(protocol.flushes).toEqual([false, true])
139139
})
140-
it('should begin a transaction', () => {
140+
it('should begin a transaction with set database name', () => {
141141
const database = 'testdb'
142142
const bookmarks = new Bookmarks([
143143
'neo4j:bookmark:v1:tx1',

packages/bolt-connection/test/bolt/bolt-protocol-v4x4.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ describe('#unit BoltProtocolV4x4', () => {
180180
expect(protocol.flushes).toEqual([false, true])
181181
})
182182

183-
it('should begin a transaction', () => {
183+
it('should begin a transaction with set database name', () => {
184184
const database = 'testdb'
185185
const bookmarks = new Bookmarks([
186186
'neo4j:bookmark:v1:tx1',

packages/bolt-connection/test/bolt/bolt-protocol-v5x0.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ describe('#unit BoltProtocolV5x0', () => {
180180
expect(protocol.flushes).toEqual([false, true])
181181
})
182182

183-
it('should begin a transaction', () => {
183+
it('should begin a transaction with set database name', () => {
184184
const database = 'testdb'
185185
const bookmarks = new Bookmarks([
186186
'neo4j:bookmark:v1:tx1',

packages/bolt-connection/test/bolt/bolt-protocol-v5x1.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ describe('#unit BoltProtocolV5x1', () => {
180180
expect(protocol.flushes).toEqual([false, true])
181181
})
182182

183-
it('should begin a transaction', () => {
183+
it('should begin a transaction with set database name', () => {
184184
const database = 'testdb'
185185
const bookmarks = new Bookmarks([
186186
'neo4j:bookmark:v1:tx1',

packages/bolt-connection/test/bolt/bolt-protocol-v5x2.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ describe('#unit BoltProtocolV5x2', () => {
180180
expect(protocol.flushes).toEqual([false, true])
181181
})
182182

183-
it('should begin a transaction', () => {
183+
it('should begin a transaction with set database name', () => {
184184
const database = 'testdb'
185185
const bookmarks = new Bookmarks([
186186
'neo4j:bookmark:v1:tx1',

packages/bolt-connection/test/bolt/bolt-protocol-v5x3.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ describe('#unit BoltProtocolV5x3', () => {
180180
expect(protocol.flushes).toEqual([false, true])
181181
})
182182

183-
it('should begin a transaction', () => {
183+
it('should begin a transaction with set database name', () => {
184184
const database = 'testdb'
185185
const bookmarks = new Bookmarks([
186186
'neo4j:bookmark:v1:tx1',

packages/bolt-connection/test/bolt/bolt-protocol-v5x4.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ describe('#unit BoltProtocolV5x4', () => {
182182
expect(protocol.flushes).toEqual([false, true])
183183
})
184184

185-
it('should begin a transaction', () => {
185+
it('should begin a transaction with set database name', () => {
186186
const database = 'testdb'
187187
const bookmarks = new Bookmarks([
188188
'neo4j:bookmark:v1:tx1',

packages/bolt-connection/test/bolt/bolt-protocol-v5x5.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ describe('#unit BoltProtocolV5x5', () => {
182182
expect(protocol.flushes).toEqual([false, true])
183183
})
184184

185-
it('should begin a transaction', () => {
185+
it('should begin a transaction with set database name', () => {
186186
const database = 'testdb'
187187
const bookmarks = new Bookmarks([
188188
'neo4j:bookmark:v1:tx1',

packages/bolt-connection/test/bolt/bolt-protocol-v5x6.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ describe('#unit BoltProtocolV5x6', () => {
182182
expect(protocol.flushes).toEqual([false, true])
183183
})
184184

185-
it('should begin a transaction', () => {
185+
it('should begin a transaction with set database name', () => {
186186
const database = 'testdb'
187187
const bookmarks = new Bookmarks([
188188
'neo4j:bookmark:v1:tx1',

0 commit comments

Comments
 (0)