Skip to content

Commit

Permalink
fix: template integration tests (#1540)
Browse files Browse the repository at this point in the history
see: #1468
  • Loading branch information
lengau authored Feb 22, 2024
1 parent fdf2438 commit f3f8203
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ from pytest_operator.plugin import OpsTest

logger = logging.getLogger(__name__)

METADATA = yaml.safe_load(Path("./metadata.yaml").read_text())
METADATA = yaml.safe_load(Path("./charmcraft.yaml").read_text())
APP_NAME = METADATA["name"]


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ from pytest_operator.plugin import OpsTest

logger = logging.getLogger(__name__)

METADATA = yaml.safe_load(Path("./metadata.yaml").read_text())
METADATA = yaml.safe_load(Path("./charmcraft.yaml").read_text())
APP_NAME = METADATA["name"]


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ from pytest_operator.plugin import OpsTest

logger = logging.getLogger(__name__)

METADATA = yaml.safe_load(Path("./metadata.yaml").read_text())
METADATA = yaml.safe_load(Path("./charmcraft.yaml").read_text())
APP_NAME = METADATA["name"]


Expand Down

0 comments on commit f3f8203

Please sign in to comment.