Skip to content

Commit 30e97ea

Browse files
author
Fiona McCrae
committed
CSRF operation creation test now passes - small change reflecting updates to master branch
1 parent 9f6e312 commit 30e97ea

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/api/v2/test_csrf_operations.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ async def api_v2_client_with_csrf(tmp_path):
8484
base = Path(__file__).resolve().parents[3]
8585

8686
with open(base / 'conf' / 'default.yml', 'r') as fle:
87-
BaseWorld.apply_config('main', yaml.safe_load(fle))
87+
BaseWorld.apply_config('main', yaml.safe_load(fle), apply_hash=True)
8888
with open(base / 'conf' / 'payloads.yml', 'r') as fle:
89-
BaseWorld.apply_config('payloads', yaml.safe_load(fle))
89+
BaseWorld.apply_config('payloads', yaml.safe_load(fle), apply_hash=True)
9090
with open(base / 'conf' / 'agents.yml', 'r') as fle:
91-
BaseWorld.apply_config('agents', yaml.safe_load(fle))
91+
BaseWorld.apply_config('agents', yaml.safe_load(fle), apply_hash=True)
9292

9393
app_svc = AppService(web.Application(client_max_size=5120 ** 2))
9494
_ = DataService()

0 commit comments

Comments
 (0)