Skip to content

Commit

Permalink
Bugfix- Output block check in code mode asserts.
Browse files Browse the repository at this point in the history
Issue- The generated expected output check in code mode asserts if the FCB length is greater than a fairly small value.
  • Loading branch information
tmarktaylor committed Sep 4, 2024
1 parent 9653699 commit e2c7977
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/generated_project_py.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ from phmutest.skip import sys_tool as _phm_sys

_phm_globals = None
_phm_testcase = unittest.TestCase()
_phm_testcase.maxDiff = None
_phm_log = []


Expand Down
1 change: 1 addition & 0 deletions docs/generated_share_demo_py.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ from phmutest.skip import sys_tool as _phm_sys

_phm_globals = None
_phm_testcase = unittest.TestCase()
_phm_testcase.maxDiff = None
_phm_log = []


Expand Down
1 change: 1 addition & 0 deletions src/phmutest/cases.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ def markdown_file(
$callfixture
_phm_globals = None
_phm_testcase = unittest.TestCase()
_phm_testcase.maxDiff = None
_phm_log = []
$setupmodule
$teardownmodule
Expand Down
1 change: 1 addition & 0 deletions tests/py/generated_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

_phm_globals = None
_phm_testcase = unittest.TestCase()
_phm_testcase.maxDiff = None
_phm_log = []


Expand Down
1 change: 1 addition & 0 deletions tests/py/generated_sharedemo.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

_phm_globals = None
_phm_testcase = unittest.TestCase()
_phm_testcase.maxDiff = None
_phm_log = []


Expand Down

0 comments on commit e2c7977

Please sign in to comment.