Skip to content

Commit ca34a7a

Browse files
committed
task(RHOAIENG-33045): Formatting
Signed-off-by: Pat O'Connor <[email protected]>
1 parent 6d1ba22 commit ca34a7a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/e2e/local_interactive_sdk_kind_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,9 @@ def heavy_calculation(num_iterations):
115115

116116
ref = heavy_calculation.remote(3000)
117117
result = ray.get(ref)
118-
assert result == 1789.4644387076728 # Updated result after moving to Python 3.12 (0.0000000000008% difference to old assertion)
118+
assert (
119+
result == 1789.4644387076728
120+
) # Updated result after moving to Python 3.12 (0.0000000000008% difference to old assertion)
119121
ray.cancel(ref)
120122
ray.shutdown()
121123

0 commit comments

Comments
 (0)