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 and mattculler committed Mar 6, 2024
1 parent ce63d3b commit fae2014
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 fae2014

Please sign in to comment.