@@ -170,12 +170,12 @@ def test_set_timestamp_creates_perforations(self, project_with_wells):
170170 assert len (perforations ) > 0 , "Perforation should be created from event"
171171 # Verify the perforation has the correct MD range
172172 perf = perforations [0 ]
173- assert abs ( perf . start_measured_depth - 2000.0 ) < 1.0 , (
174- "Perforation start MD should match"
175- )
176- assert abs ( perf . end_measured_depth - 2200.0 ) < 1.0 , (
177- "Perforation end MD should match"
178- )
173+ assert (
174+ abs ( perf . start_measured_depth - 2000.0 ) < 1.0
175+ ), "Perforation start MD should match"
176+ assert (
177+ abs ( perf . end_measured_depth - 2200.0 ) < 1.0
178+ ), "Perforation end MD should match"
179179
180180 def test_set_timestamp_creates_tubing_intervals (self , project_with_wells ):
181181 """Test that set_timestamp creates tubing intervals from tubing events."""
@@ -202,9 +202,9 @@ def test_set_timestamp_creates_tubing_intervals(self, project_with_wells):
202202 msw_settings = well_path_b .msw_settings ()
203203 assert msw_settings is not None , "MSW settings should be available"
204204 # Check that diameter roughness mode was set to intervals
205- assert msw_settings . diameter_roughness_mode == "Intervals" , (
206- "Diameter roughness mode should be set to Intervals"
207- )
205+ assert (
206+ msw_settings . diameter_roughness_mode == " Intervals"
207+ ), "Diameter roughness mode should be set to Intervals"
208208
209209 def test_set_timestamp_ignores_future_events (self , project_with_wells ):
210210 """Test that events after the timestamp are not applied."""
0 commit comments