From 0303c80febca1c9d296aea6a798c852a84a6fc47 Mon Sep 17 00:00:00 2001
From: Antoine Aflalo <197810+Belphemur@users.noreply.github.com>
Date: Thu, 13 Feb 2025 20:04:33 -0500
Subject: [PATCH] test: fix path
---
internal/cbz/cbz_loader_test.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/internal/cbz/cbz_loader_test.go b/internal/cbz/cbz_loader_test.go
index f820c18..a3a80c6 100644
--- a/internal/cbz/cbz_loader_test.go
+++ b/internal/cbz/cbz_loader_test.go
@@ -17,14 +17,14 @@ func TestLoadChapter(t *testing.T) {
testCases := []testCase{
{
name: "Original Chapter",
- filePath: "../testdata/Chapter 1.cbz",
+ filePath: "../../testdata/Chapter 1.cbz",
expectedPages: 16,
expectedSeries: "Boundless Necromancer",
expectedConversion: false,
},
{
name: "Converted Chapter",
- filePath: "../testdata/Chapter 10_converted.cbz",
+ filePath: "../../testdata/Chapter 10_converted.cbz",
expectedPages: 107,
expectedSeries: "Boundless Necromancer",
expectedConversion: true,