Skip to content

Commit

Permalink
CmdDataTest: fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
AlesKus committed Jan 12, 2025
1 parent 649cf31 commit 2a33d14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/fprime_gds/common/data_types/test_cmd_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def test_str_numerical_command_args(self):
Tests CmdData::get_str() for a command with several numerical arguments
"""
opcode = 43
mnemonic = "TEST_CMD_NUMS"
mnemonic = "TEST_CMD_NUMERICS"
component = "PythonTests"
arguments = [("just_int", None, numerical_types.U32Type),
("just_float", None, numerical_types.F64Type),
Expand All @@ -51,7 +51,7 @@ def test_str_string_command_args(self):
Tests CmdData::get_str() for a command with one string argument
"""
opcode = 44
mnemonic = "TEST_CMD_NUMS"
mnemonic = "TEST_CMD_STR"
component = "PythonTests"
arguments = [("just_string", None, StringType.construct_type(f"String_{128}", 128))]
command_template = CmdTemplate(opcode, mnemonic, component, arguments)
Expand Down

0 comments on commit 2a33d14

Please sign in to comment.