Skip to content

Commit

Permalink
renamed CellProcessor class to CellProcessorBase : to make a virtual …
Browse files Browse the repository at this point in the history
…class later
  • Loading branch information
kangwonlee committed Dec 26, 2017
1 parent 10ae99a commit a4689b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_nb_file_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def test_has_symbol(self):
cells = file['cells']
result = []

cp = nbutils.CellProcessor()
cp = nbutils.CellProcessorBase()

for k, cell in enumerate(cells):
cp.set_cell(cell)
Expand All @@ -51,7 +51,7 @@ def test_replace_symbol(self):
cells = file['cells']
result = []

cp = nbutils.CellProcessor()
cp = nbutils.CellProcessorBase()

for k, cell in enumerate(cells):
cp.set_cell(cell)
Expand Down

0 comments on commit a4689b9

Please sign in to comment.