From 8b637be21cd8e3a76dc6135733fcc5703b312ad5 Mon Sep 17 00:00:00 2001 From: Brett Date: Tue, 7 May 2024 12:55:13 -0400 Subject: [PATCH] fix test after rebase --- asdf/_tests/test_yaml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asdf/_tests/test_yaml.py b/asdf/_tests/test_yaml.py index edf26424d..4438bfb69 100644 --- a/asdf/_tests/test_yaml.py +++ b/asdf/_tests/test_yaml.py @@ -219,7 +219,7 @@ def test_explicit_tags(): ...""" # Check that fully qualified explicit tags work - buff = io.BytesIO(yaml.encode("ascii")) + buff = io.BytesIO(yaml) with asdf.open(buff) as ff: assert all(ff.tree["foo"] == [1, 2, 3])