Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
update one unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Aug 5, 2018
1 parent baf2388 commit 19e6005
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _unittests/ut_io/test_output_capture.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,11 @@ def test_signature(self):
self.assertEqual(kind, "function")
self.assertNotEmpty(res)
newstring = [
".. autosignature:: src.cpyquickhelper.io.stdchelper.cprint"]
".. autosignature:: cpyquickhelper.io.stdchelper.cprint"]
newstring = "\n".join(newstring)
res = rst2html(newstring, writer="rst", layout="sphinx")
self.assertIn(
"src.cpyquickhelper.io.stdchelper.cprint", res)
"cpyquickhelper.io.stdchelper.cprint", res)
self.assertIn("Display a string on the standard output", res)
self.assertIn("Signature", res)

Expand Down

0 comments on commit 19e6005

Please sign in to comment.