diff --git a/tests/integration/test_integration.py b/tests/integration/test_integration.py index 00a2fd4..4d43ec7 100644 --- a/tests/integration/test_integration.py +++ b/tests/integration/test_integration.py @@ -17,7 +17,7 @@ METADATA = yaml.safe_load(Path("./charmcraft.yaml").read_text()) APP_NAME = METADATA["name"] DB_CHARM_NAME = "mongodb-k8s" -DB_CHARM_CHANNEL = "6/beta" +DB_CHARM_CHANNEL = "6/stable" NMS_CHARM_NAME = "sdcore-nms-k8s" NMS_CHARM_CHANNEL = "1.5/edge" TLS_CHARM_NAME = "self-signed-certificates" @@ -99,9 +99,6 @@ async def test_restore_tls_and_wait_for_active_status(ops_test: OpsTest, deploy) await ops_test.model.wait_for_idle(apps=[APP_NAME], status="active", timeout=TIMEOUT) -@pytest.mark.skip( - reason="Bug in MongoDB: https://github.com/canonical/mongodb-k8s-operator/issues/218" -) @pytest.mark.abort_on_fail async def test_remove_database_and_wait_for_blocked_status(ops_test: OpsTest, deploy): assert ops_test.model @@ -109,9 +106,6 @@ async def test_remove_database_and_wait_for_blocked_status(ops_test: OpsTest, de await ops_test.model.wait_for_idle(apps=[APP_NAME], status="blocked", timeout=TIMEOUT) -@pytest.mark.skip( - reason="Bug in MongoDB: https://github.com/canonical/mongodb-k8s-operator/issues/218" -) @pytest.mark.abort_on_fail async def test_restore_database_and_wait_for_active_status(ops_test: OpsTest, deploy): assert ops_test.model