Browse Source

refactoring: removed unnecessary comments

remotes/origin/testing
Sandro Welte 12 months ago
parent
commit
7bb1e6d599
  1. 4
      test/test_convert_C_to_F.c

4
test/test_convert_C_to_F.c

@ -16,10 +16,10 @@ void test_convert_temperature(void) {
char from_unit = 'c';
char to_unit = 'f';
// Perform the conversion
float result = convert_temperature(temperature, from_unit, to_unit);
// Define the expected result (100 degrees Celsius to Fahrenheit is 212)
float expectedResult = 212;
// Assert the result

Loading…
Cancel
Save