Skip to content

Commit

Permalink
updating dsd100sample set
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian-Robert Stöter committed Jun 9, 2016
1 parent bb137f9 commit fb896b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/test_audio_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def dsd(request):

def test_targets(dsd):

tracks = dsd.load_dsd_tracks(ids=1)
tracks = dsd.load_dsd_tracks(ids=55)

for track in tracks:
for key, target in list(track.targets.items()):
Expand All @@ -22,7 +22,7 @@ def test_targets(dsd):

def test_rates(dsd):

tracks = dsd.load_dsd_tracks(ids=1)
tracks = dsd.load_dsd_tracks(ids=55)

for track in tracks:
assert track.rate == 44100
Expand Down
2 changes: 1 addition & 1 deletion tests/test_evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ def test_evaluate(method):
# process dsd but do not save the results
assert dsd.evaluate(
user_function=user_function1,
ids=1
ids=55
)
2 changes: 1 addition & 1 deletion tests/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def test_file_loading():
assert len(tracks) == 4

# load only a single id
tracks = dsd.load_dsd_tracks(ids=1)
tracks = dsd.load_dsd_tracks(ids=55)

assert len(tracks) == 1

Expand Down

0 comments on commit fb896b5

Please sign in to comment.