From 0594429b75bfc663a59f583e42639239c1568e0a Mon Sep 17 00:00:00 2001 From: Callahan Date: Tue, 23 May 2023 08:00:00 -0500 Subject: [PATCH] tests: remove arch_triplet from unit test (#4160) Signed-off-by: Callahan Kovacs --- tests/unit/meta/test_snap_yaml.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/unit/meta/test_snap_yaml.py b/tests/unit/meta/test_snap_yaml.py index 5282046905..d04a8cd408 100644 --- a/tests/unit/meta/test_snap_yaml.py +++ b/tests/unit/meta/test_snap_yaml.py @@ -96,7 +96,6 @@ def test_assumes(simple_project, new_dir): simple_project(assumes=["foossumes"]), prime_dir=Path(new_dir), arch="amd64", - arch_triplet="x86_64-linux-gnu", ) yaml_file = Path("meta/snap.yaml") assert yaml_file.is_file() @@ -425,7 +424,6 @@ def test_hook_command_chain_assumes_with_existing_assumes(simple_project, new_di simple_project(hooks=hooks, assumes=["foossumes", "barssumes"]), prime_dir=Path(new_dir), arch="amd64", - arch_triplet="x86_64-linux-gnu", ) yaml_file = Path("meta/snap.yaml") assert yaml_file.is_file()