From edf5232690a648b715a2649f37393c0565bc127f Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Tue, 3 Feb 2015 17:42:17 +0000 Subject: Fix failing coverage test --- morphlib/buildenvironment.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/morphlib/buildenvironment.py b/morphlib/buildenvironment.py index 01b5ed20..ef770f52 100644 --- a/morphlib/buildenvironment.py +++ b/morphlib/buildenvironment.py @@ -115,9 +115,9 @@ class BuildEnvironment(): # than leaving it up to individual morphologies. if arch == 'x86_32': cpu = 'i686' - elif arch == 'armv8l64': + elif arch == 'armv8l64': # pragma: no cover cpu = 'aarch64' - elif arch == 'armv8b64': + elif arch == 'armv8b64': # pragma: no cover cpu = 'aarch64_be' else: cpu = arch -- cgit v1.2.1