from wind_chill import wind_chill expected = 7 output = wind_chill(10, 25) if output != expected: print("FAILED the following test:") print("wind_chill(10, 25) returned", output, "should be", expected) expected = -11 output = wind_chill(0, 100) if output != expected: print("FAILED the following test:") print("wind_chill(0, 100) returned", output, "should be", expected) expected = 38 output = wind_chill(40, 0) if output != expected: print("FAILED the following test:") print("wind_chill(40, 0) returned", output, "should be", expected) expected = 45 output = wind_chill(40, 20) if output != expected: print("FAILED the following test:") print("wind_chill(40, 20) returned", output, "should be", expected)