Skip to content

Commit

Permalink
Fixing test case
Browse files Browse the repository at this point in the history
  • Loading branch information
asolino committed Sep 4, 2018
1 parent 36d57e5 commit 324ab03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/SMB_RPC/test_srvs.py
Expand Up @@ -196,7 +196,7 @@ def test_hNetrFileClose(self):
resp.dump()
except Exception, e:
# I might be closing myself ;)
if str(e).find('STATUS_PIPE_BROKEN') < 0 and str(e).find('STATUS_FILE_CLOSED') < 0 and str(e).find('STATUS_INVALID_HANDLE') < 0:
if str(e).find('STATUS_PIPE_BROKEN') < 0 and str(e).find('STATUS_FILE_CLOSED') < 0 and str(e).find('STATUS_INVALID_HANDLE') < 0 and str(e).find('0x90a') < 0:
raise

def test_NetrSessionEnum(self):
Expand Down

0 comments on commit 324ab03

Please sign in to comment.