From bd736daba3847d89ed07983ecf704a2a611dcb25 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Fri, 18 Nov 2022 11:55:27 +0100 Subject: rust: Fix indentation, convert to TABs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The two “rust_ffi_host” modules looked different in my editor because one was indented with TABs and the other with spaces. They now consistently use spaces (like the other examples in this file). Test: atest Change-Id: I7d0cdba5978da92a1a299bb290472403d4f13462 --- rust/library_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'rust/library_test.go') diff --git a/rust/library_test.go b/rust/library_test.go index 4633cc7ba..79abec548 100644 --- a/rust/library_test.go +++ b/rust/library_test.go @@ -30,11 +30,11 @@ func TestLibraryVariants(t *testing.T) { srcs: ["foo.rs"], crate_name: "foo", } - rust_ffi_host { - name: "libfoo.ffi", - srcs: ["foo.rs"], - crate_name: "foo" - }`) + rust_ffi_host { + name: "libfoo.ffi", + srcs: ["foo.rs"], + crate_name: "foo" + }`) // Test all variants are being built. libfooRlib := ctx.ModuleForTests("libfoo", "linux_glibc_x86_64_rlib_rlib-std").Rule("rustc") -- cgit v1.2.3-59-g8ed1b