Closed
Description
Description of the problem
I was observing the test files and found that tests which use raises
are not being asserted which was due to absence of return
statement in,
pydatastructs/pydatastructs/utils/raises_util.py
Lines 3 to 16 in 8da8f36
However with merging of #51 raises
will return True
on successful execution, hence all the tests of the following format,
raises(...)
are to be replace with the format below,
assert raises(...)