From 7feae7afe499c8e641f243639038534cd0454873 Mon Sep 17 00:00:00 2001 From: tyranron Date: Wed, 16 Nov 2022 17:57:42 +0100 Subject: [PATCH] Fix tests for `linux/386` Docker image platform --- docker/coturn/tests/main.bats | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/coturn/tests/main.bats b/docker/coturn/tests/main.bats index 9b4fbb5..c37debf 100644 --- a/docker/coturn/tests/main.bats +++ b/docker/coturn/tests/main.bats @@ -14,6 +14,8 @@ [ "$output" = "armv7l" ] elif [ "$PLATFORM" = "linux/arm64/v8" ]; then [ "$output" = "aarch64" ] + elif [ "$PLATFORM" = "linux/386" ]; then + [ "$output" = "x86_64" ] else [ "$output" = "$(echo $PLATFORM | cut -d '/' -f2-)" ] fi