You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An exception inside a with block will immediately exit that block.
That means any subsequent checks won't run. We can test the string
by using assertRaisesRegex.
Fixessonos#10
pyFLAC/tests/test_encoder.py
Lines 127 to 129 in 19b3322
The third line here has no effect. If
encoder._init()
raises an exception (which we expect it to), all subsequent lines won't run at all.The text was updated successfully, but these errors were encountered: