From e3f1487e03335f891f4e2757caec5bcbfd6682b9 Mon Sep 17 00:00:00 2001 From: MSxDOS <15524350+MSxDOS@users.noreply.github.com> Date: Fri, 23 Oct 2020 14:12:18 +0300 Subject: [PATCH] Fix formatting --- appveyor.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index b3a7cd2..9cd0b27 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -24,15 +24,15 @@ install: - rustc -vV - cargo -vV - if defined aarch64 ( - rustup target add aarch64-pc-windows-msvc + rustup target add aarch64-pc-windows-msvc ) build_script: - if "%channel%"=="nightly" ( - cargo test --verbose --color always --features "func-types impl-default nightly user" + cargo test --verbose --color always --features "func-types impl-default nightly user" ) else ( - cargo test --verbose --color always --features "func-types impl-default user" + cargo test --verbose --color always --features "func-types impl-default user" ) - if defined aarch64 ( - cargo test --verbose --color always --features "func-types impl-default nightly user" --target aarch64-pc-windows-msvc --no-run + cargo test --verbose --color always --features "func-types impl-default nightly user" --target aarch64-pc-windows-msvc --no-run )