@@ -167,7 +167,7 @@ def test_pickling(self):
167
167
168
168
169
169
class _TestMemoryUSMBase :
170
- """ Base tests for MemoryUSM* """
170
+ """Base tests for MemoryUSM*"""
171
171
172
172
def setUp (self ):
173
173
pass
@@ -220,23 +220,23 @@ def test_sycl_usm_array_interface(self):
220
220
221
221
222
222
class TestMemoryUSMShared (_TestMemoryUSMBase , unittest .TestCase ):
223
- """ Tests for MemoryUSMShared """
223
+ """Tests for MemoryUSMShared"""
224
224
225
225
def setUp (self ):
226
226
self .MemoryUSMClass = MemoryUSMShared
227
227
self .usm_type = "shared"
228
228
229
229
230
230
class TestMemoryUSMHost (_TestMemoryUSMBase , unittest .TestCase ):
231
- """ Tests for MemoryUSMHost """
231
+ """Tests for MemoryUSMHost"""
232
232
233
233
def setUp (self ):
234
234
self .MemoryUSMClass = MemoryUSMHost
235
235
self .usm_type = "host"
236
236
237
237
238
238
class TestMemoryUSMDevice (_TestMemoryUSMBase , unittest .TestCase ):
239
- """ Tests for MemoryUSMDevice """
239
+ """Tests for MemoryUSMDevice"""
240
240
241
241
def setUp (self ):
242
242
self .MemoryUSMClass = MemoryUSMDevice
@@ -261,7 +261,7 @@ def __sycl_usm_array_interface__(self):
261
261
262
262
class TestMemoryWithView (unittest .TestCase ):
263
263
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"""
265
265
266
266
MemoryUSMClass = MemoryUSMShared
267
267
try :
0 commit comments