Skip to content

Commit

Permalink
Removing an unused variable from the tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
MotaDan committed Sep 21, 2016
1 parent edae467 commit a42afe6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_steganographer.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def test_openImageFile():
assert imageData == unpackImage(pixels)

with pytest.raises(SystemExit):
fileData = openImageFile("OpenImageFileThatDoesNotExist.nope")
openImageFile("OpenImageFileThatDoesNotExist.nope")


def test_writeImageFile():
Expand All @@ -221,7 +221,7 @@ def test_writeImageFile():
assert compare_images(cleanFile, dirtyFile) < 500

with pytest.raises(SystemExit):
fileData = writeImageFile(cleanFile, "WriteImageFileThatDoesNotExist.nope", dirtyData)
writeImageFile(cleanFile, "WriteImageFileThatDoesNotExist.nope", dirtyData)


def test_steganographerHide():
Expand Down

0 comments on commit a42afe6

Please sign in to comment.