summaryrefslogtreecommitdiff
path: root/tests/ovs-macros.at
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ovs-macros.at')
-rw-r--r--tests/ovs-macros.at4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ovs-macros.at b/tests/ovs-macros.at
index f3ab3548a..677eea753 100644
--- a/tests/ovs-macros.at
+++ b/tests/ovs-macros.at
@@ -227,12 +227,12 @@ uuidfilt () {
# Not all shells support "exec -a NAME", so test for it.
if (exec -a myname true); then
run_as () {
- (exec -a "$@")
+ (exec -a "$@")
}
else
run_as () {
shift
- (exec "$@")
+ (exec "$@")
}
fi
]