|
1 | | -# bluemira is an integrated inter-disciplinary design tool for future fusion |
2 | | -# reactors. It incorporates several modules, some of which rely on other |
3 | | -# codes, to carry out a range of typical conceptual fusion reactor design |
4 | | -# activities. |
| 1 | +# SPDX-FileCopyrightText: 2021-present M. Coleman, J. Cook, F. Franza |
| 2 | +# SPDX-FileCopyrightText: 2021-present I.A. Maione, S. McIntosh |
| 3 | +# SPDX-FileCopyrightText: 2021-present J. Morris, D. Short |
5 | 4 | # |
6 | | -# Copyright (C) 2021-2023 M. Coleman, J. Cook, F. Franza, I.A. Maione, S. McIntosh, |
7 | | -# J. Morris, D. Short |
8 | | -# |
9 | | -# bluemira is free software; you can redistribute it and/or |
10 | | -# modify it under the terms of the GNU Lesser General Public |
11 | | -# License as published by the Free Software Foundation; either |
12 | | -# version 2.1 of the License, or (at your option) any later version. |
13 | | -# |
14 | | -# bluemira is distributed in the hope that it will be useful, |
15 | | -# but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | | -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
17 | | -# Lesser General Public License for more details. |
18 | | -# |
19 | | -# You should have received a copy of the GNU Lesser General Public |
20 | | -# License along with bluemira; if not, see <https://www.gnu.org/licenses/>. |
21 | | - |
| 5 | +# SPDX-License-Identifier: LGPL-2.1-or-later |
22 | 6 |
|
23 | 7 | import numpy as np |
24 | 8 | import pytest |
@@ -54,8 +38,8 @@ def test_radial_boundary_conditions(self): |
54 | 38 |
|
55 | 39 | class TestCalculateBmax: |
56 | 40 | @pytest.mark.parametrize( |
57 | | - "alpha,beta,k_expected", |
58 | | - [[1.375, 1.2, 1.12], [1.322, 1.5, 1.07], [1.287, 2.0, 1.03]], |
| 41 | + ("alpha", "beta", "k_expected"), |
| 42 | + [(1.375, 1.2, 1.12), (1.322, 1.5, 1.07), (1.287, 2.0, 1.03)], |
59 | 43 | ) |
60 | 44 | def test_Bmax(self, alpha, beta, k_expected): |
61 | 45 | """ |
|
0 commit comments