From 5503cb84fcaaa82c24f240559cf079ca1db64ba5 Mon Sep 17 00:00:00 2001 From: purarue <7804791+purarue@users.noreply.github.com> Date: Sun, 27 Oct 2024 13:06:00 -0700 Subject: [PATCH] chore: update urls --- tests/test_json.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_json.py b/tests/test_json.py index 5eadb6d..c73e480 100644 --- a/tests/test_json.py +++ b/tests/test_json.py @@ -160,14 +160,14 @@ def test_location_2024(tmp_path_f: Path) -> None: def test_chrome_history(tmp_path_f: Path) -> None: - contents = '{"Browser History": [{"page_transition": "LINK", "title": "title", "url": "https://sean.fish", "client_id": "W1vSb98l403jhPeK==", "time_usec": 1617404690134513}]}' + contents = '{"Browser History": [{"page_transition": "LINK", "title": "title", "url": "https://purarue.xyz", "client_id": "W1vSb98l403jhPeK==", "time_usec": 1617404690134513}]}' fp = tmp_path_f / "file" fp.write_text(contents) res = list(prj._parse_chrome_history(fp)) assert res == [ models.ChromeHistory( title="title", - url="https://sean.fish", + url="https://purarue.xyz", dt=datetime.datetime( 2021, 4, 2, 23, 4, 50, 134513, tzinfo=datetime.timezone.utc ),