remove some now useless six.ensure_text

This commit is contained in:
Alexandre Detiste 2024-12-21 02:14:26 +01:00
parent f9a65f82c0
commit 095f81041c

View File

@ -2,8 +2,6 @@
Ported to Python 3.
"""
from six import ensure_text
import os
import tempfile
from io import BytesIO, StringIO
@ -139,18 +137,18 @@ class CommandStatus(unittest.TestCase):
def test_no_operations(self):
values = [
StringIO(ensure_text(json.dumps({
StringIO(json.dumps({
"active": [],
"recent": [],
}))),
StringIO(ensure_text(json.dumps({
})),
StringIO(json.dumps({
"counters": {
"bytes_downloaded": 0,
},
"stats": {
"node.uptime": 0,
}
}))),
})),
]
def do_http(*args, **kw):
return values.pop(0)