Skip to content

Commit

Permalink
re-order imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhail Sobolev committed Aug 25, 2015
1 parent a57d74d commit c42f085
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion master/buildbot/test/integration/test_customservices.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
#
# Copyright Buildbot Team Members

from buildbot.test.util.integration import RunMasterBase
from twisted.internet import defer

from buildbot.test.util.integration import RunMasterBase

# This integration test creates a master and slave environment,
# with one builder and a custom step
# The custom step is using a CustomService, in order to calculate its result
Expand Down
9 changes: 5 additions & 4 deletions master/buildbot/test/unit/test_schedulers_triggerable.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,16 @@

import mock

from twisted.internet import defer
from twisted.internet import task
from twisted.python import log
from twisted.trial import unittest

from buildbot.process import properties
from buildbot.schedulers import triggerable
from buildbot.test.fake import fakedb
from buildbot.test.util import interfaces
from buildbot.test.util import scheduler
from twisted.internet import defer
from twisted.internet import task
from twisted.python import log
from twisted.trial import unittest


class TriggerableInterfaceTest(unittest.TestCase, interfaces.InterfaceTests):
Expand Down

0 comments on commit c42f085

Please sign in to comment.