Skip to content

Commit

Permalink
updated mini alignment test to add new parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
KatyBrown committed May 14, 2024
1 parent 752c415 commit 4ca497f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/miniAlignmentsTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def testDrawMiniAlignment(self, input, expected, type, keep_numbers):
logger = logging.getLogger('path.to.module.under.test')
with mock.patch.object(logger, 'debug') as mock_debug:
miniAlignments.drawMiniAlignment(self.alignment, self.names, logger, self.dest,
type, 300,
type, 'standard', 300,
title="test",
width=5,
height=3,
Expand Down Expand Up @@ -139,11 +139,11 @@ def setUp(self):
with mock.patch.object(logger, 'debug') as mock_debug:
# make mini plot without markup
self.mini_plot = miniAlignments.drawMiniAlignment(self.alignment, self.names, logger, self.dest,
'nt', 300, None, 5, 3,
'nt', 'standard', 300, None, 5, 3,
False, None, True)
# make mini plot with markup
self.mini_plot_expected = miniAlignments.drawMiniAlignment(self.alignment, self.names, logger, self.dest,
'nt', 300, None, 5, 3,
'nt', 'standard', 300, None, 5, 3,
True, self.markup_dict, True)

def tearDown(self):
Expand Down

0 comments on commit 4ca497f

Please sign in to comment.