Skip to content

Commit

Permalink
Fix failing podcast merging test
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankoegl committed Aug 12, 2017
1 parent eaf9d28 commit 646d003
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions mygpo/administration/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,11 @@ def test_merge(self):
# we need that for later
e3_id = e3.pk

actions = Counter()

# decide which episodes to merge
groups = [(0, [e1]), (1, [e2, e3]), (2, [e4])]

# carry out the merge
pm = PodcastMerger([p1, p2], actions, groups)
pm = PodcastMerger([p1, p2], groups)
pm.merge()

e1 = Episode.objects.get(pk=e1.pk)
Expand Down

0 comments on commit 646d003

Please sign in to comment.