Fixed comment typo.

This commit is contained in:
luzpaz 2019-05-09 11:04:50 -04:00 committed by Carlton Gibson
parent a3a4f5c144
commit e2feea5fc4
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ class GDALRasterTests(SimpleTestCase):
result = rast.bands[0].data() result = rast.bands[0].data()
if numpy: if numpy:
result = result.flatten().tolist() result = result.flatten().tolist()
# Band data is equal to zero becaues no nodata value has been specified. # Band data is equal to zero because no nodata value has been specified.
self.assertEqual(result, [0] * 4) self.assertEqual(result, [0] * 4)
def test_raster_metadata_property(self): def test_raster_metadata_property(self):