Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
joelee2012 committed Dec 15, 2023
1 parent eb7b79f commit 65ab06e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions api4jenkins/item.py
Expand Up @@ -8,6 +8,7 @@

from .exceptions import ItemNotFoundError


def camel(s):
if s[0] == '_':
return s
Expand Down
6 changes: 4 additions & 2 deletions tests/integration/conftest.py
Expand Up @@ -6,8 +6,10 @@
from pathlib import Path

import pytest
from api4jenkins import Jenkins, Folder, EMPTY_FOLDER_XML, AsyncJenkins, AsyncFolder
from api4jenkins.job import WorkflowJob, AsyncWorkflowJob

from api4jenkins import (EMPTY_FOLDER_XML, AsyncFolder, AsyncJenkins, Folder,
Jenkins)
from api4jenkins.job import AsyncWorkflowJob, WorkflowJob

TEST_DATA_DIR = Path(__file__).with_name('tests_data')

Expand Down

0 comments on commit 65ab06e

Please sign in to comment.