Skip to content

Commit 2b48470

Browse files
Flovajaagut
authored andcommitted
Rename main class
1 parent 1d18b87 commit 2b48470

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bitbots_team_communication/bitbots_team_communication/bitbots_team_communication.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from bitbots_team_communication.converter.robocup_protocol_converter import RobocupProtocolConverter, TeamColor
2828

2929

30-
class HumanoidLeagueTeamCommunication:
30+
class TeamCommunication:
3131
def __init__(self):
3232
self._package_path = get_package_share_directory("bitbots_team_communication")
3333
self.node = Node("team_comm", automatically_declare_parameters_from_overrides=True)
@@ -240,7 +240,7 @@ def get_current_time(self) -> Time:
240240

241241
def main():
242242
rclpy.init(args=None)
243-
HumanoidLeagueTeamCommunication()
243+
TeamCommunication()
244244

245245

246246
if __name__ == "__main__":

bitbots_team_communication/test/converter/test_state_to_message_converter.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
import bitbots_team_communication.robocup_extension_pb2 as Proto # noqa: N812
2424
from bitbots_msgs.msg import Strategy
25-
from bitbots_team_communication.bitbots_team_communication import HumanoidLeagueTeamCommunication
25+
from bitbots_team_communication.bitbots_team_communication import TeamCommunication
2626
from bitbots_team_communication.converter.robocup_protocol_converter import RobocupProtocolConverter, TeamColor
2727

2828
own_team_id = 1
@@ -305,7 +305,7 @@ def state_with_gamestate(state):
305305

306306
@pytest.fixture
307307
def state():
308-
state = Mock(HumanoidLeagueTeamCommunication)
308+
state = Mock(TeamCommunication)
309309
state.player_id = 2
310310
state.team_id = own_team_id
311311
state.gamestate = None

0 commit comments

Comments
 (0)