diff --git a/apps/local-qa-runtime/browser-adapter/src/lib.rs b/apps/local-qa-runtime/browser-adapter/src/lib.rs index 6e901c996..57d5db06e 100644 --- a/apps/local-qa-runtime/browser-adapter/src/lib.rs +++ b/apps/local-qa-runtime/browser-adapter/src/lib.rs @@ -34,10 +34,7 @@ pub enum BrowserAdapterError { } pub async fn run_fixed_browser_smoke() -> Result { - #[cfg(any( - target_os = "linux", - all(target_os = "macos", target_arch = "aarch64") - ))] + #[cfg(any(target_os = "linux", all(target_os = "macos", target_arch = "aarch64")))] { let (sender, receiver) = futures_channel::oneshot::channel(); std::thread::Builder::new() @@ -55,19 +52,13 @@ pub async fn run_fixed_browser_smoke() -> Result