diff -r dc36535a5edc -r 9db77d46de79 contrib/python-zstandard/tests/test_train_dictionary.py --- a/contrib/python-zstandard/tests/test_train_dictionary.py Mon Jan 06 14:07:43 2025 -0500 +++ b/contrib/python-zstandard/tests/test_train_dictionary.py Mon Jan 06 14:15:40 2025 -0500 @@ -25,10 +25,10 @@ def test_bad_args(self): with self.assertRaises(TypeError): - zstd.train_dictionary(8192, u"foo") + zstd.train_dictionary(8192, "foo") with self.assertRaises(ValueError): - zstd.train_dictionary(8192, [u"foo"]) + zstd.train_dictionary(8192, ["foo"]) def test_no_params(self): d = zstd.train_dictionary(8192, random_input_data())