From 80b67b0d334c64f6b523c68b9e0ef14c3e4e6350 Mon Sep 17 00:00:00 2001 From: Ezekiel Warren Date: Fri, 28 Jun 2024 12:03:08 -0700 Subject: [PATCH] chore: formatting --- test/errors/BUILD.bazel | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/errors/BUILD.bazel b/test/errors/BUILD.bazel index d78a009..e4969dc 100644 --- a/test/errors/BUILD.bazel +++ b/test/errors/BUILD.bazel @@ -4,21 +4,21 @@ load("@rules_cc//cc:defs.bzl", "cc_test") # buildifier: keep sorted _TESTS = [ "duplicate_notice_components", + "invalid_assoc_field", "invalid_notify_settings", "no_capabilities", "no_package_statement_first", "unknown_association_field", "unknown_component_notify_settings", "unknown_param_value", - "invalid_assoc_field", ] [cc_test( name = test, srcs = ["{}.cc".format(test)], + args = ["--gtest_catch_exceptions=0"], copts = copts, data = ["{}.ecsact".format(test)], - args = ["--gtest_catch_exceptions=0"], deps = [ "//:test_lib", "@ecsact_interpret", @@ -30,12 +30,12 @@ _TESTS = [ cc_test( name = "ambiguous_field_type", srcs = ["ambiguous_field_type.cc"], + args = ["--gtest_catch_exceptions=0"], copts = copts, data = [ "ambiguous_field_type.ecsact", "ambiguous_field_type_import.ecsact", ], - args = ["--gtest_catch_exceptions=0"], deps = [ "//:test_lib", "@ecsact_interpret",