Skip to content

Commit

Permalink
fix: Add missing commas
Browse files Browse the repository at this point in the history
* Add missing commas to `ctexplain` text

Closes #14666.

PiperOrigin-RevId: 425702114
  • Loading branch information
mrshu authored and copybara-github committed Feb 1, 2022
1 parent 382b187 commit b6090a8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions tools/ctexplain/bazel_api_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,12 @@ def testConfigWithDefines(self):

def testConfigWithStarlarkFlags(self):
self.ScratchFile('testapp/defs.bzl', [
'def _flag_impl(settings, attr):', ' pass', 'string_flag = rule(',
'def _flag_impl(settings, attr):',
' pass',
'string_flag = rule(',
' implementation = _flag_impl,',
' build_setting = config.string(flag = True)'
')'
' build_setting = config.string(flag = True)',
')',
])
self.ScratchFile('testapp/BUILD', [
'load(":defs.bzl", "string_flag")',
Expand Down

0 comments on commit b6090a8

Please sign in to comment.