diff options
Diffstat (limited to 'gitlab/tests/test_config.py')
-rw-r--r-- | gitlab/tests/test_config.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gitlab/tests/test_config.py b/gitlab/tests/test_config.py index 18b54c8..cd61b8d 100644 --- a/gitlab/tests/test_config.py +++ b/gitlab/tests/test_config.py @@ -15,15 +15,14 @@ # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +import io import os from textwrap import dedent import mock -import io - -from gitlab import config, USER_AGENT import pytest +from gitlab import config, USER_AGENT custom_user_agent = "my-package/1.0.0" |