about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTyler Mandry <tmandry@google.com>2024-10-25 19:38:16 -0400
committerGitHub <noreply@github.com>2024-10-25 19:38:16 -0400
commitce4fc999a77cacc67adf27d81264d498c05a5314 (patch)
tree61b0884dae11c3f2830afbbe8251b2a5235c5a61
parentd94a76a73f0ba7a819d98174895704261a13a0e0 (diff)
downloadrust-ce4fc999a77cacc67adf27d81264d498c05a5314.tar.gz
rust-ce4fc999a77cacc67adf27d81264d498c05a5314.zip
Fix indentation
-rwxr-xr-xsrc/ci/docker/scripts/fuchsia-test-runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ci/docker/scripts/fuchsia-test-runner.py b/src/ci/docker/scripts/fuchsia-test-runner.py
index 5c319411774..77e2741f9ea 100755
--- a/src/ci/docker/scripts/fuchsia-test-runner.py
+++ b/src/ci/docker/scripts/fuchsia-test-runner.py
@@ -287,7 +287,7 @@ class TestEnvironment:
 
     @property
     def package_server_log_path(self) -> Path:
-      return self.tmp_dir().joinpath(f"repo_{self.TEST_REPO_NAME}.log")
+        return self.tmp_dir().joinpath(f"repo_{self.TEST_REPO_NAME}.log")
 
     @property
     def emulator_log_path(self) -> Path:
@@ -401,7 +401,7 @@ class TestEnvironment:
         # Set configs
         configs = {
             "log.enabled": "true",
-            "log.dir":  self.tmp_dir(),
+            "log.dir": self.tmp_dir(),
             "test.is_isolated": "true",
             "test.experimental_structured_output": "true",
         }