Skip to content

Commit 69caf40

Browse files
committed
MNT: removed Re where unused in test_multidim_drag.py
- MNT: Re variable was unused in test_3d_drag_with_varying_alpha thus replaced it
1 parent d838ac8 commit 69caf40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/test_multidim_drag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def test_3d_drag_with_varying_alpha():
104104
reynolds = np.array([1e5, 1e6])
105105
alpha = np.array([0.0, 5.0, 10.0, 15.0])
106106

107-
M, Re, A = np.meshgrid(mach, reynolds, alpha, indexing="ij")
107+
M, _, A = np.meshgrid(mach, reynolds, alpha, indexing="ij")
108108
# Strong alpha dependency: Cd increases significantly with alpha
109109
cd_data = 0.3 + 0.05 * M + 0.03 * A
110110
cd_data = np.clip(cd_data, 0.2, 2.0)

0 commit comments

Comments
 (0)