Skip to content

Commit af9c2f3

Browse files
committed
Fix test examples
1 parent 34ee7b6 commit af9c2f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

linearmodels/tests/test_examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
nbs = sorted(glob.glob(os.path.join(NOTEBOOK_DIR, "*.ipynb")))
4848
ids = [os.path.split(nb)[-1].split(".")[0] for nb in nbs]
49-
if not nbs: # pragma: no cover
49+
if nbs: # pragma: no cover
5050
@pytest.fixture(params=nbs, ids=ids)
5151
def notebook(request):
5252
return request.param

0 commit comments

Comments
 (0)