Skip to content

Commit 2f80522

Browse files
joejoevictorcopybara-github
authored andcommitted
Fixed naming of test cases broke travis build
PiperOrigin-RevId: 239256432 Change-Id: Idb349ed14613fbb3d65082eac6e0d7dc1f30555c
1 parent 665c497 commit 2f80522

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

fire/helputils_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def testHelpScreen(self):
164164
"""
165165
self.assertEqual(textwrap.dedent(expected_output).lstrip('\n'), help_output)
166166

167-
def testHelpScreenForFunction_docstringWithLineBreak(self):
167+
def testHelpScreenForFunctionDocstringWithLineBreak(self):
168168
component = tc.ClassWithMultilineDocstring.example_generator
169169
t = trace.FireTrace(component, name='example_generator')
170170
info = inspectutils.Info(component)
@@ -189,7 +189,7 @@ def testHelpScreenForFunction_docstringWithLineBreak(self):
189189
"""
190190
self.assertEqual(textwrap.dedent(expected_output).lstrip('\n'), help_output)
191191

192-
def testHelpScreenForFunction_functionWithDefaultArgs(self):
192+
def testHelpScreenForFunctionFunctionWithDefaultArgs(self):
193193
component = tc.WithDefaults().double
194194
t = trace.FireTrace(component, name='double')
195195
info = inspectutils.Info(component)

0 commit comments

Comments
 (0)