Skip to content

Commit

Permalink
no need for sidpy
Browse files Browse the repository at this point in the history
  • Loading branch information
Rama Vasudevan committed Jun 22, 2024
1 parent d62ddcd commit 3e87b68
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/readers/spectroscopy/test_neutron_reflectivity.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import unittest
import sys
import sidpy
from pywget import wget
import os
sys.path.append("../../../../SciFiReaders/")
Expand All @@ -14,7 +13,7 @@ def test_load_test_neutrons_file(self):
# Test if the force curve file can be successfully read
file_path = 'nr_file.txt'
wget.download(neutrons_file_path, out=file_path)
reader = sidpy.NeutronReflectivity(file_path)
reader = sr.NeutronReflectivity(file_path)
data_set = reader.read()

assert data_set.shape == (242,), "Shape of dataset should be 242 but is instead {}".format(data_set.shape)
Expand Down

0 comments on commit 3e87b68

Please sign in to comment.