mirror of https://github.com/django/django.git
Fixed comment typo.
This commit is contained in:
parent
a3a4f5c144
commit
e2feea5fc4
|
@ -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):
|
||||||
|
|
Loading…
Reference in New Issue