From 0e51320809bb806f48ee20dc5710814c84b46833 Mon Sep 17 00:00:00 2001 From: yangarbiter Date: Mon, 12 Jul 2021 14:13:27 -0700 Subject: [PATCH] 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. --- 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 c8c97436e5..e4e8c93631 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')