From c90d19cfb30ff42509f030eb6d2f05532319c63c Mon Sep 17 00:00:00 2001 From: Yao-Yuan Yang Date: Mon, 12 Jul 2021 12:11:08 -0700 Subject: [PATCH] Remove skipIfRocm from test_fileobj_flac in soundfile.save_test The test was broken from the beginning and for a reason unrelated to ROCm, but was disabled for ROCm in pytorch/audio#1411. pytorch/audio#1604 fixed the test so that we are re-enabling it. --- test/torchaudio_unittest/backend/soundfile/save_test.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/torchaudio_unittest/backend/soundfile/save_test.py b/test/torchaudio_unittest/backend/soundfile/save_test.py index c8c97436e59..e4e8c93631c 100644 --- a/test/torchaudio_unittest/backend/soundfile/save_test.py +++ b/test/torchaudio_unittest/backend/soundfile/save_test.py @@ -11,7 +11,6 @@ get_wav_data, load_wav, nested_params, - skipIfRocm, ) from .common import ( fetch_wav_subtype, @@ -281,7 +280,6 @@ def test_fileobj_wav(self): self._test_fileobj('wav') @skipIfFormatNotSupported("FLAC") - @skipIfRocm def test_fileobj_flac(self): """Saving audio via file-like object works""" self._test_fileobj('flac')