Skip to content

Commit

Permalink
Fixing logger bug during rebaseline step (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
cssherman authored Feb 27, 2024
1 parent d543c04 commit 3c6f5d7
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 3c6f5d7

Please sign in to comment.