Skip to content

Commit 2d3dbeb

Browse files
committed
Try to use upt to date notebook in notebooks folder, rather than one in tests folder
1 parent 158912c commit 2d3dbeb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test_xcpp_kernel.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ class XCppNotebookTests(unittest.TestCase):
141141
def test_notebooks(self):
142142
for name in self.notebook_names:
143143

144-
inp = f'Notebooks/{name}.ipynb'
145-
out = f'Notebooks/{name}_output.ipynb'
144+
inp = f'../notebooks/{name}.ipynb'
145+
out = f'../notebooks/{name}_output.ipynb'
146146

147147
with open(inp) as f:
148148
input_nb = nbformat.read(f, as_version=4)
@@ -187,4 +187,4 @@ class XCppTests2(jupyter_kernel_test.KernelTests):
187187

188188

189189
if __name__ == '__main__':
190-
unittest.main()
190+
unittest.main()

0 commit comments

Comments
 (0)