Commit 546ef50f authored by Marco Buttu's avatar Marco Buttu
Browse files

Fix #144: replace TARGETSYS to STATION in all tests

parent 45fb289b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ __author__ = "Marco Buttu <mbuttu@oa-cagliari.inaf.it>"
class TestServoSetupCmd(unittest2.TestCase):
    """Test the servoSetup command"""

    telescope = os.getenv('TARGETSYS')
    telescope = os.getenv('STATION')

    def setUp(self):
        self.client = PySimpleClient()
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ __author__ = "Marco Buttu <mbuttu@oa-cagliari.inaf.it>"
class TestSetServoASConfigurationCmd(unittest2.TestCase):
    """Test the setServoASConfiguration command"""

    telescope = os.getenv('TARGETSYS')
    telescope = os.getenv('STATION')

    def setUp(self):
        self.client = PySimpleClient()
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ __author__ = "Marco Buttu <mbuttu@oa-cagliari.inaf.it>"
class TestSetServoElevationTrackingCmd(unittest2.TestCase):
    """Test the setServoElevationTracking command"""

    telescope = os.getenv('TARGETSYS')
    telescope = os.getenv('STATION')

    def setUp(self):
        self.client = PySimpleClient()
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ __author__ = "Marco Buttu <mbuttu@oa-cagliari.inaf.it>"
class TestSetServoOffsetCmd(unittest2.TestCase):
    """Test the setServoOffset command"""

    telescope = os.getenv('TARGETSYS')
    telescope = os.getenv('STATION')

    def setUp(self):
        self.client = PySimpleClient()
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ __author__ = "Marco Buttu <mbuttu@oa-cagliari.inaf.it>"

class TestClearUserOffset(unittest2.TestCase):

    telescope = os.getenv('TARGETSYS')
    telescope = os.getenv('STATION')

    @classmethod
    def setUpClass(cls):
Loading