diff --git a/src/wipplpy/brb/connection.py b/src/wipplpy/brb/connection.py index d659d61..f1c453e 100644 --- a/src/wipplpy/brb/connection.py +++ b/src/wipplpy/brb/connection.py @@ -2,11 +2,11 @@ Create objects pertaining to accessing databases for the BRB device. """ -from WiPPLPy.modules.config_reader import MDSplusConfigReader -from WiPPLPy.modules.connection import MDSPlusConnection +from wipplpy.modules.config_reader import MDSplusConfigReader +from wipplpy.modules.connection import MDSplusConnection -class BRBConnection(MDSPlusConnection): +class BRBConnection(MDSplusConnection): """ Open the BRB-MDSplus database for a given shot number. """ @@ -35,5 +35,5 @@ def make_connection(self, shot_number): self._local_and_remote_connection( shot_number, self.config_reader.BRB_tree, - self.config_reader.BRB_remote_server, + self.config_reader.BRB_remote_server ) diff --git a/tests/brb/test_connection.py b/tests/brb/test_connection.py new file mode 100644 index 0000000..0ec203a --- /dev/null +++ b/tests/brb/test_connection.py @@ -0,0 +1,3 @@ +""" +Tests for database-connection objects associated with the BRB device. +""" diff --git a/src/wipplpy/tests/test_placeholder.py b/tests/test_placeholder.py similarity index 100% rename from src/wipplpy/tests/test_placeholder.py rename to tests/test_placeholder.py