Skip to content

Commit e5908dc

Browse files
committed
Fix buildifier lint
1 parent 07e8bc9 commit e5908dc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/base_rules/py_executable_base_tests.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ def _test_basic_windows(name, config):
5151
"//command_line_option:build_python_zip": "true",
5252
"//command_line_option:cpu": "windows_x86_64",
5353
"//command_line_option:crosstool_top": CROSSTOOL_TOP,
54+
"//command_line_option:extra_execution_platforms": [WINDOWS_X86_64],
5455
"//command_line_option:extra_toolchains": [CC_TOOLCHAIN],
5556
"//command_line_option:platforms": [WINDOWS_X86_64],
56-
"//command_line_option:extra_execution_platforms": [WINDOWS_X86_64],
5757
},
5858
attr_values = {"target_compatible_with": target_compatible_with},
5959
)
@@ -97,9 +97,9 @@ def _test_basic_zip(name, config):
9797
"//command_line_option:build_python_zip": "true",
9898
"//command_line_option:cpu": "linux_x86_64",
9999
"//command_line_option:crosstool_top": CROSSTOOL_TOP,
100+
"//command_line_option:extra_execution_platforms": [LINUX_X86_64],
100101
"//command_line_option:extra_toolchains": [CC_TOOLCHAIN],
101102
"//command_line_option:platforms": [LINUX_X86_64],
102-
"//command_line_option:extra_execution_platforms": [LINUX_X86_64],
103103
},
104104
attr_values = {"target_compatible_with": target_compatible_with},
105105
)

tests/base_rules/py_test/py_test_tests.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ def _test_mac_requires_darwin_for_execution(name, config):
5959
config_settings = {
6060
"//command_line_option:cpu": "darwin_x86_64",
6161
"//command_line_option:crosstool_top": CROSSTOOL_TOP,
62+
"//command_line_option:extra_execution_platforms": [MAC_X86_64],
6263
"//command_line_option:extra_toolchains": CC_TOOLCHAIN,
6364
"//command_line_option:platforms": [MAC_X86_64],
64-
"//command_line_option:extra_execution_platforms": [MAC_X86_64],
6565
},
6666
attr_values = _SKIP_WINDOWS,
6767
)
@@ -93,9 +93,9 @@ def _test_non_mac_doesnt_require_darwin_for_execution(name, config):
9393
config_settings = {
9494
"//command_line_option:cpu": "k8",
9595
"//command_line_option:crosstool_top": CROSSTOOL_TOP,
96+
"//command_line_option:extra_execution_platforms": [LINUX_X86_64],
9697
"//command_line_option:extra_toolchains": CC_TOOLCHAIN,
9798
"//command_line_option:platforms": [LINUX_X86_64],
98-
"//command_line_option:extra_execution_platforms": [LINUX_X86_64],
9999
},
100100
attr_values = _SKIP_WINDOWS,
101101
)

0 commit comments

Comments
 (0)