Skip to content

Commit 7ad34b0

Browse files
applied black autoformatting
1 parent a96cf11 commit 7ad34b0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

dpctl/tests/test_sycl_usm.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def test_pickling(self):
167167

168168

169169
class _TestMemoryUSMBase:
170-
""" Base tests for MemoryUSM* """
170+
"""Base tests for MemoryUSM*"""
171171

172172
def setUp(self):
173173
pass
@@ -220,23 +220,23 @@ def test_sycl_usm_array_interface(self):
220220

221221

222222
class TestMemoryUSMShared(_TestMemoryUSMBase, unittest.TestCase):
223-
""" Tests for MemoryUSMShared """
223+
"""Tests for MemoryUSMShared"""
224224

225225
def setUp(self):
226226
self.MemoryUSMClass = MemoryUSMShared
227227
self.usm_type = "shared"
228228

229229

230230
class TestMemoryUSMHost(_TestMemoryUSMBase, unittest.TestCase):
231-
""" Tests for MemoryUSMHost """
231+
"""Tests for MemoryUSMHost"""
232232

233233
def setUp(self):
234234
self.MemoryUSMClass = MemoryUSMHost
235235
self.usm_type = "host"
236236

237237

238238
class TestMemoryUSMDevice(_TestMemoryUSMBase, unittest.TestCase):
239-
""" Tests for MemoryUSMDevice """
239+
"""Tests for MemoryUSMDevice"""
240240

241241
def setUp(self):
242242
self.MemoryUSMClass = MemoryUSMDevice
@@ -261,7 +261,7 @@ def __sycl_usm_array_interface__(self):
261261

262262
class TestMemoryWithView(unittest.TestCase):
263263
def test_suai_non_contig_1D(self):
264-
""" Test of zero-copy using sycl_usm_array_interface with non-contiguous data """
264+
"""Test of zero-copy using sycl_usm_array_interface with non-contiguous data"""
265265

266266
MemoryUSMClass = MemoryUSMShared
267267
try:

0 commit comments

Comments
 (0)