Skip to content

Commit

Permalink
fix: default values
Browse files Browse the repository at this point in the history
  • Loading branch information
Gu1nness committed Sep 23, 2024
1 parent 65008f5 commit 027142e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
)

TEST_DB = "continuous_writes_database"
TEST_COLL = "test_collection"
TEST_COLL = "continuous_writes_collection"


@pytest_asyncio.fixture
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/ha_tests/application_charm/src/charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
logger = logging.getLogger(__name__)

DATABASE_NAME = "continuous_writes_database"
COLLECTION_NAME = "test_collection"
COLLECTION_NAME = "continuous_writes_collection"
PEER = "application-peers"
PROC_PID_KEY = "proc-pid"
LAST_WRITTEN_FILE = "last_written_value"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
from pymongo.errors import PyMongoError
from pymongo.write_concern import WriteConcern

DEFAULT_DB_NAME = "new-db"
DEFAULT_COLL_NAME = "test_collection"
DEFAULT_DB_NAME = "continuous_writes_database"
DEFAULT_COLL_NAME = "continuous_writes_collection"

run = True

Expand Down

0 comments on commit 027142e

Please sign in to comment.