Skip to content

Commit

Permalink
should now also work for py2
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianneubauer committed Dec 1, 2017
1 parent 4ca65f1 commit b55bd34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import postgraas_server.backends.postgres_cluster.postgres_cluster_driver as pgcd
from postgraas_server.backends.postgres_cluster import PGClusterBackend

CLUSTER_CONFIG = """[metadb]
CLUSTER_CONFIG = u"""[metadb]
db_name = postgraas
db_username = postgraas
db_pwd = postgraas12
Expand Down
4 changes: 2 additions & 2 deletions tests/test_integration/test_postgras_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from postgraas_server.create_app import create_app
from .utils import wait_for_postgres_listening

DOCKER_CONFIG = """
DOCKER_CONFIG = u"""
[metadb]
db_name = postgraas
db_username = postgraas
Expand All @@ -25,7 +25,7 @@
type = docker
"""

CLUSTER_CONFIG = """
CLUSTER_CONFIG = u"""
[metadb]
db_name = postgraas
db_username = postgraas
Expand Down

0 comments on commit b55bd34

Please sign in to comment.