We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19efee8 commit bf52078Copy full SHA for bf52078
tests/test_diffraction_objects.py
@@ -241,15 +241,15 @@ def test_diffraction_objects_equality(inputs1, inputs2, expected):
241
params_on_xtype = [
242
(
243
[
244
- np.array([1, 2, 3, 4, 5, 6]), # intensity array
+ np.array([100, 200, 300, 400, 500, 600]), # intensity array
245
np.array([0, 30, 60, 90, 120, 180]), # tth array
246
np.array([1, 2, 3, 4, 5, 6]), # q array
247
np.array([10, 20, 30, 40, 50, 60]), # d array
248
],
249
250
- np.array([[0, 30, 60, 90, 120, 180], [1, 2, 3, 4, 5, 6]]), # expected on_tth
251
- np.array([[1, 2, 3, 4, 5, 6], [1, 2, 3, 4, 5, 6]]), # expected on_q
252
- np.array([[10, 20, 30, 40, 50, 60], [1, 2, 3, 4, 5, 6]]), # expected on_d
+ np.array([[0, 30, 60, 90, 120, 180], [100, 200, 300, 400, 500, 600]]), # expected on_tth
+ np.array([[1, 2, 3, 4, 5, 6], [100, 200, 300, 400, 500, 600]]), # expected on_q
+ np.array([[10, 20, 30, 40, 50, 60], [100, 200, 300, 400, 500, 600]]), # expected on_d
253
254
)
255
]
0 commit comments