Skip to content

Commit f070fe8

Browse files
committed
Updating the test case name
1 parent 44abea9 commit f070fe8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build/helper/helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
'ViChar[]': { 'array_type': None, 'python_type': 'str', 'numpy_type': None, }, # noqa: E201, E202, E241
2727
'ViBoolean': { 'array_type': None, 'python_type': 'bool', 'numpy_type': None, }, # noqa: E201, E202, E241
2828
'ViRsrc': { 'array_type': None, 'python_type': 'str', 'numpy_type': 'bool_', }, # noqa: E201, E202, E241
29-
'NIComplexNumber': { 'array_type': 'P', 'python_type': None, 'numpy_type': 'complex128', }, # noqa: E201, E202, E241
29+
'NIComplexNumber': { 'array_type': None, 'python_type': None, 'numpy_type': 'complex128', }, # noqa: E201, E202, E241
3030
'NIComplexNumberF32': { 'array_type': None, 'python_type': None, 'numpy_type': 'complex64', }, # noqa: E201, E202, E241
3131
'NIComplexI16': { 'array_type': None, 'python_type': None, 'numpy_type': 'int16', }, # noqa: E201, E202, E241
3232
}

generated/nifake/nifake/unit_tests/test_library_interpreter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ def test_write_waveform_numpy_complex_interleaved_i16_valid_input(self):
899899
_matchers.NIComplexI16PointerMatcher(waveform_data_pointer, number_of_samples)
900900
)
901901

902-
def test_create_deembedding_sparameter_table_array(self):
902+
def test_function_with_numpy3d_array_input_parameter(self):
903903
from nifake._complextype import NIComplexNumber
904904

905905
array_3d = numpy.full((2, 3, 4), 1.0 + 2.0j, dtype=numpy.complex128)

src/nifake/unit_tests/test_library_interpreter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ def test_write_waveform_numpy_complex_interleaved_i16_valid_input(self):
899899
_matchers.NIComplexI16PointerMatcher(waveform_data_pointer, number_of_samples)
900900
)
901901

902-
def test_create_deembedding_sparameter_table_array(self):
902+
def test_function_with_numpy3d_array_input_parameter(self):
903903
from nifake._complextype import NIComplexNumber
904904

905905
array_3d = numpy.full((2, 3, 4), 1.0 + 2.0j, dtype=numpy.complex128)

0 commit comments

Comments
 (0)