mirror of
https://github.com/ansible/awx.git
synced 2026-02-25 15:06:02 -03:30
clean up unnecessary usage of the six library (awx only supports py3)
This commit is contained in:
@@ -14,7 +14,6 @@ from backports.tempfile import TemporaryDirectory
|
||||
import fcntl
|
||||
from unittest import mock
|
||||
import pytest
|
||||
import six
|
||||
import yaml
|
||||
|
||||
from django.conf import settings
|
||||
@@ -1562,7 +1561,7 @@ class TestJobCredentials(TestJobExecution):
|
||||
self.task.run(self.pk)
|
||||
|
||||
def test_custom_environment_injectors_with_unicode_content(self):
|
||||
value = six.u('Iñtërnâtiônàlizætiøn')
|
||||
value = 'Iñtërnâtiônàlizætiøn'
|
||||
some_cloud = CredentialType(
|
||||
kind='cloud',
|
||||
name='SomeCloud',
|
||||
|
||||
Reference in New Issue
Block a user