"examples/vscode:/vscode.git/clone" did not exist on "4c9959f6b95e20f0a4a0a45c21d168ee7b568dc9"
Unverified Commit 0e513208 authored by yangarbiter's avatar yangarbiter Committed by GitHub
Browse files

Remove skipIfRocm from test_fileobj_flac in soundfile.save_test (#1626)

The test was broken from the beginning and for a reason unrelated to
ROCm, but was disabled for ROCm in https://github.com/pytorch/audio/pull/1411.
https://github.com/pytorch/audio/pull/1604 fixed the test so that we are re-enabling it.
parent 886c59b1
...@@ -11,7 +11,6 @@ from torchaudio_unittest.common_utils import ( ...@@ -11,7 +11,6 @@ from torchaudio_unittest.common_utils import (
get_wav_data, get_wav_data,
load_wav, load_wav,
nested_params, nested_params,
skipIfRocm,
) )
from .common import ( from .common import (
fetch_wav_subtype, fetch_wav_subtype,
...@@ -281,7 +280,6 @@ class TestFileObject(TempDirMixin, PytorchTestCase): ...@@ -281,7 +280,6 @@ class TestFileObject(TempDirMixin, PytorchTestCase):
self._test_fileobj('wav') self._test_fileobj('wav')
@skipIfFormatNotSupported("FLAC") @skipIfFormatNotSupported("FLAC")
@skipIfRocm
def test_fileobj_flac(self): def test_fileobj_flac(self):
"""Saving audio via file-like object works""" """Saving audio via file-like object works"""
self._test_fileobj('flac') self._test_fileobj('flac')
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment