The TestGetSeries_SpecialCharactersInName test was failing with a 400 status because the series name 'Series: Book & Other (Vol. 1)' was interpolated directly into the URL without encoding. The ampersand was parsed as a query parameter delimiter, corrupting the request. Use url.QueryEscape() to properly encode the name parameter.