summaryrefslogtreecommitdiffstats
path: root/src/ci/docker/scripts/fuchsia-test-runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/ci/docker/scripts/fuchsia-test-runner.py')
-rwxr-xr-xsrc/ci/docker/scripts/fuchsia-test-runner.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/ci/docker/scripts/fuchsia-test-runner.py b/src/ci/docker/scripts/fuchsia-test-runner.py
index af01f9ccb..f78d446c8 100755
--- a/src/ci/docker/scripts/fuchsia-test-runner.py
+++ b/src/ci/docker/scripts/fuchsia-test-runner.py
@@ -15,12 +15,10 @@ import hashlib
import json
import os
import platform
-import re
import shutil
-import signal
import subprocess
import sys
-from typing import ClassVar, List, Optional
+from typing import ClassVar, List
@dataclass
@@ -523,7 +521,7 @@ class TestEnvironment:
env_vars += '\n "RUST_BACKTRACE=0",'
# Use /tmp as the test temporary directory
- env_vars += f'\n "RUST_TEST_TMPDIR=/tmp",'
+ env_vars += '\n "RUST_TEST_TMPDIR=/tmp",'
cml.write(
self.CML_TEMPLATE.format(env_vars=env_vars, exe_name=exe_name)