-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor syntax fixes #81
Conversation
Not entirely sure how this was missed by me (I checked the Git blame)!
Codecov Report
@@ Coverage Diff @@
## master #81 +/- ##
=======================================
Coverage 88.12% 88.12%
=======================================
Files 6 6
Lines 362 362
Branches 117 117
=======================================
Hits 319 319
Misses 21 21
Partials 22 22
Continue to review full report at Codecov.
|
@@ -177,17 +177,6 @@ def test_write_detached_raw_odd_extension(self): | |||
self.assertEqual(header['encoding'], 'raw') | |||
self.assertEqual('data file' in header, False) | |||
|
|||
def test_write_detached_raw_odd_extension(self): | |||
output_data_filename = os.path.join(self.temp_write_dir, 'testfile_detached_raw.nrrd2') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this test repeated? Sorry, couldn't understand the commit message.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, exactly. I was confused at first too but I just copied/pasted the same test twice when writing and forgot to delete the duplicate.
This PR looks fine. |
# Conflicts: # nrrd/tests/test_writing.py # nrrd/writer.py
Made minor changes here and there just to stay consistent and make code look better.