From f769c8ce689e00f6c12972af5748cd69d5c33860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciar=C3=A1n=20Ainsworth?= Date: Sat, 18 Nov 2023 15:16:57 +0000 Subject: [PATCH] fix(tests): fix broken test Part-of: --- api/tests/music/test_tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/tests/music/test_tasks.py b/api/tests/music/test_tasks.py index 8b456e2d6..b5b8a31e2 100644 --- a/api/tests/music/test_tasks.py +++ b/api/tests/music/test_tasks.py @@ -1424,8 +1424,8 @@ def test_upload_checks_mbid_tag(temp_signal, factories, mocker, preferences): assert upload.import_status == "errored" assert upload.import_details == { - "error_code": "Uploading files without a MusicBrainz ID is not permitted in this pod", - "detail": "You can tag you files with MusicBrainz Picard", + "error_code": "Only content tagged with a MusicBrainz ID is permitted on this pod.", + "detail": "You can tag your files with MusicBrainz Picard", }