From 075f2f08f0f67d449e04e64f5a85742e52e50d30 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Thu, 25 Jan 2024 18:06:43 -0800 Subject: [PATCH] Use a more URL-looking url in tests --- glowfic_test.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/glowfic_test.py b/glowfic_test.py index 68debf9..22eea25 100644 --- a/glowfic_test.py +++ b/glowfic_test.py @@ -16,8 +16,9 @@ from texify import PandocTexifier def spec_for_testing(html: bytes) -> Spec: - return Spec('test', - FakeFetcher({'test': html, 'test?view=flat': html}), + return Spec('https://fake/test', + FakeFetcher({'https://fake/test': html, + 'https://fake/test?view=flat': html}), FakeImageStore(), lambda x: x, lambda x: None, -- 2.44.1