Skip to content

Commit

Permalink
Merge pull request #200 from jhlegarreta/FixGrammarInTractographyDown…
Browse files Browse the repository at this point in the history
…sampleLogMsg

STYLE: Fix grammar in logged message
  • Loading branch information
ljod committed Nov 30, 2023
2 parents e3ace67 + 005dc3d commit bed3c10
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -670,8 +670,8 @@ def test_TractographyDownsample2(self):
l2 = outpd.GetNumberOfLines()
p1 = pd.GetNumberOfPoints()
p2 = outpd.GetNumberOfPoints()
logging.info('Input/Output numbers of lines %d / %d' % (l1,l2))
logging.info('Input/Output numbers of points %d / %d' % (p1,p2))
logging.info('Input/Output number of lines %d / %d' % (l1,l2))
logging.info('Input/Output number of points %d / %d' % (p1,p2))
if l1 == l2:
logging.info('TEST 1 synthetic data passed, number of lines is equal')
else:
Expand All @@ -684,8 +684,8 @@ def test_TractographyDownsample2(self):
l2 = outpd.GetNumberOfLines()
p1 = pd.GetNumberOfPoints()
p2 = outpd.GetNumberOfPoints()
logging.info('Input/Output numbers of lines %d / %d' % (l1,l2))
logging.info('Input/Output numbers of points %d / %d' % (p1,p2))
logging.info('Input/Output number of lines %d / %d' % (l1,l2))
logging.info('Input/Output number of points %d / %d' % (p1,p2))
if p1 > p2:
logging.info('TEST2 synthetic data passed, number of points is reduced')
else:
Expand Down

0 comments on commit bed3c10

Please sign in to comment.