Skip to content

Commit

Permalink
chore: fix tests
Browse files Browse the repository at this point in the history
potatoeggy committed Jan 6, 2025
1 parent 5f1a1d9 commit a804d65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_base.py
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ def test_basemetadata() -> None:
genres = ["Test genre", "Test genre 2"]
description = "Test description"
cover_art = "https://example.com/cover.jpg"
title_slug = "test-title"
title_slug = "Test title"

metadata = mandown.BaseMetadata(
title=title,
@@ -35,7 +35,7 @@ def test_basemetadata() -> None:
def test_basechapter() -> None:
title = "Test title"
url = "https://example.com"
slug = "test-title"
slug = "Test title"

chapter = mandown.BaseChapter(title=title, url=url)

0 comments on commit a804d65

Please sign in to comment.