Skip to content

Commit 615363e

Browse files
authored
Removed aura references from general app example (#508)
1 parent 49f493a commit 615363e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tests/integration/examples/test_driver_introduction_example.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
from neo4j._exceptions import BoltHandshakeError
3434

3535

36-
# python -m pytest tests/integration/examples/test_aura_example.py -s -v
36+
# python -m pytest tests/integration/examples/test_driver_introduction_example.py -s -v
3737

3838
# tag::driver-introduction-example[]
3939
class App:
@@ -91,10 +91,9 @@ def _find_and_return_person(tx, person_name):
9191

9292

9393
if __name__ == "__main__":
94-
# Aura queries use an encrypted connection using the "neo4j+s" URI scheme
9594
bolt_url = "%%BOLT_URL_PLACEHOLDER%%"
96-
user = "<Username for Neo4j Aura database>"
97-
password = "<Password for Neo4j Aura database>"
95+
user = "<Username for database>"
96+
password = "<Password for database>"
9897
app = App(bolt_url, user, password)
9998
app.create_friendship("Alice", "David")
10099
app.find_person("Alice")

0 commit comments

Comments
 (0)