Fix H703 test

Change-Id: I7cfc896381426b751569b7b856c68358a17eee62
This commit is contained in:
Tim Burke 2016-05-19 18:41:11 -07:00
parent 7284cb4dea
commit 1b446f4e56
1 changed files with 2 additions and 3 deletions

View File

@ -125,10 +125,9 @@ def hacking_localization_strings(logical_line, tokens, noqa):
H702: _LW("Bob %s" % foo)
H702: _LE("Bob %s" % foo)
H702: _LC("Bob %s" % foo)
# H703 check is not quite right, disabled by removing colon
H703 _("%s %s" % (foo, bar))
H702: _("%s %s" % (foo, bar))
H703: _("%s %s") % (foo, bar)
"""
# TODO(sdague) actually get these tests working
if noqa:
return
gen = check_i18n()