Skip to content

Commit

Permalink
Fixing logger bug during rebaseline step
Browse files Browse the repository at this point in the history
  • Loading branch information
cssherman committed Feb 26, 2024
1 parent d543c04 commit c425c1d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions geos_ats_package/geos_ats/test_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,10 +388,9 @@ def testRebaseline( self ):
if config.rebaseline_ask:
while 1:
if config.rebaseline_undo:
logger.info( f"Are you sure you want to undo the rebaseline for TestCase '{self.name}'?",
flush=True )
logger.info( f"Are you sure you want to undo the rebaseline for TestCase '{self.name}'?" )
else:
logger.info( f"Are you sure you want to rebaseline TestCase '{self.name}'?", flush=True )
logger.info( f"Are you sure you want to rebaseline TestCase '{self.name}'?" )

x = input( '[y/n] ' )
x = x.strip()
Expand Down

0 comments on commit c425c1d

Please sign in to comment.