Skip to content

Commit

Permalink
Merge pull request #30 from ali-ince/1.7-support-go-1.11
Browse files Browse the repository at this point in the history
Small fix for C compilation on go-1.11
  • Loading branch information
ali-ince authored Oct 19, 2018
2 parents 247b257 + 644691e commit deb8e12
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions neo4j/test-integration/values_unsupported_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ var _ = Describe("Unsupported Types [V1]", func() {
var err error
var driver neo4j.Driver
var session neo4j.Session
var result neo4j.Result

BeforeEach(func() {
server, err = control.EnsureSingleInstance()
Expand Down Expand Up @@ -71,7 +70,7 @@ var _ = Describe("Unsupported Types [V1]", func() {
})

testSend := func(data interface{}) {
result, err = session.Run("WITH $x RETURN 1", map[string]interface{}{"x": data})
_, err = session.Run("WITH $x RETURN 1", map[string]interface{}{"x": data})
Expect(err).To(BeConnectorErrorWithCode(0x501))
Expect(err).To(BeConnectorErrorWithDescription("unable to generate run message"))
}
Expand Down

0 comments on commit deb8e12

Please sign in to comment.