MotaDan / steganographerPY

Hides files and messages in an image file.
https://www.youtube.com/watch?v=TWEXCYQKyDc
MIT License
1 stars 0 forks source link

Tests accessing same file causing intermitent failures #84

Closed MotaDan closed 7 years ago

MotaDan commented 7 years ago

Multiple test functions are trying to open a steganogrified file and failing because another test deleted it. The functions that share this file are test_main_hide_file_no_output test_main_hide_msg_no_output A copy of the clean png file can be used and renamed at the beginning of the function. Alternatively this may have been solved another way. This problem has appeared before with files being deleted by another function before it is read.

MotaDan commented 7 years ago

Created a unique copy of the clean image file and used that one. All the tests have passed again.