Skip to content

Commit 3c6f5d7

Browse files
authored
Fixing logger bug during rebaseline step (#11)
1 parent d543c04 commit 3c6f5d7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

geos_ats_package/geos_ats/test_case.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -388,10 +388,9 @@ def testRebaseline( self ):
388388
if config.rebaseline_ask:
389389
while 1:
390390
if config.rebaseline_undo:
391-
logger.info( f"Are you sure you want to undo the rebaseline for TestCase '{self.name}'?",
392-
flush=True )
391+
logger.info( f"Are you sure you want to undo the rebaseline for TestCase '{self.name}'?" )
393392
else:
394-
logger.info( f"Are you sure you want to rebaseline TestCase '{self.name}'?", flush=True )
393+
logger.info( f"Are you sure you want to rebaseline TestCase '{self.name}'?" )
395394

396395
x = input( '[y/n] ' )
397396
x = x.strip()

0 commit comments

Comments
 (0)