Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed final test_axographio.py test for Python 3
In Python 2, round() always returns a float. In Python 3, the original data type is returned. For this test, the rounded value had type numpy.float32, which is not considered equivalent to a float in Python 3 (64-bit machines only, presumably). Fixed by converting the value to a float before rounding.
- Loading branch information