aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorNil Admirari <50202386+nihil-admirari@users.noreply.github.com>2021-12-09 12:40:31 +0000
committerGitHub <noreply@github.com>2021-12-09 18:10:31 +0530
commit8157a09d22f6f4310427a7155e737c2c1bc3aef9 (patch)
tree4318ae9bea7b276a89f91a1c0e143464ef225316 /test
parentb1aaf1c07fae6f6e5d4bc966016f5e5df7b6c83c (diff)
downloadhypervideo-pre-8157a09d22f6f4310427a7155e737c2c1bc3aef9.tar.lz
hypervideo-pre-8157a09d22f6f4310427a7155e737c2c1bc3aef9.tar.xz
hypervideo-pre-8157a09d22f6f4310427a7155e737c2c1bc3aef9.zip
[SponsorBlock] Add Filler and Highlight categories (#1664)
Authored by: nihil-admirari, pukkandan
Diffstat (limited to 'test')
-rw-r--r--test/test_postprocessors.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_postprocessors.py b/test/test_postprocessors.py
index 090c7b47b..bbe998993 100644
--- a/test/test_postprocessors.py
+++ b/test/test_postprocessors.py
@@ -124,11 +124,11 @@ class TestModifyChaptersPP(unittest.TestCase):
chapters = self._chapters([70], ['c']) + [
self._sponsor_chapter(10, 20, 'sponsor'),
self._sponsor_chapter(30, 40, 'preview'),
- self._sponsor_chapter(50, 60, 'sponsor')]
+ self._sponsor_chapter(50, 60, 'filler')]
expected = self._chapters(
[10, 20, 30, 40, 50, 60, 70],
['c', '[SponsorBlock]: Sponsor', 'c', '[SponsorBlock]: Preview/Recap',
- 'c', '[SponsorBlock]: Sponsor', 'c'])
+ 'c', '[SponsorBlock]: Filler Tangent', 'c'])
self._remove_marked_arrange_sponsors_test_impl(chapters, expected, [])
def test_remove_marked_arrange_sponsors_UniqueNamesForOverlappingSponsors(self):