-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix nice array for single element list-like
- Loading branch information
1 parent
8be7b4e
commit 03f7519
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from pmd_beamphysics.units import nice_array | ||
import numpy as np | ||
|
||
|
||
def test_nice_array(): | ||
nice_array(1) | ||
|
||
nice_array([1]) | ||
|
||
nice_array( | ||
[ | ||
1, | ||
2, | ||
] | ||
) | ||
|
||
nice_array(np.array([1, 2])) |