diff --git a/tests/models/test_thermal_model.py b/tests/models/test_thermal_model.py
index e63724a..6a7ebfb 100644
--- a/tests/models/test_thermal_model.py
+++ b/tests/models/test_thermal_model.py
@@ -71,10 +71,9 @@ def example_model_2_conductors(example_span_2_conductors, example_weather_a):
     return linerate.Cigre601(example_span_2_conductors, example_weather_a, np.datetime64("2016-06-10 11:00"))
 
 def test_compute_conductor_temperature(example_model_1_conductors, example_model_2_conductors):
-
     # Check that the ampacity of a span with two conductors is divided when computing the conductor temperature.
     current_1_conductor = 1000
     current_2_conductors = current_1_conductor * 2
     # The temperature should stay the same
-    assert example_model_1_conductors.compute_conductor_temperature(current_1_conductor) == example_model_2_conductors.compute_conductor_temperature(current_2_conductors)
-
+    assert (example_model_1_conductors.compute_conductor_temperature(current_1_conductor) ==
+            example_model_2_conductors.compute_conductor_temperature(current_2_conductors))