Skip to content

Commit

Permalink
Fix test for QT5
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Nov 2, 2016
1 parent eb91915 commit ef012c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/python/test_provider_ogr_gpkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def testDisablewalForSqlite3(self):
self.assertEqual(res, 'delete')

self.assertTrue(vl.startEditing())
feature = vl.getFeatures().next()
feature = next(vl.getFeatures())
self.assertTrue(vl.changeAttributeValue(feature.id(), 1, 1001))

# Commit changes
Expand Down

2 comments on commit ef012c4

@DelazJ
Copy link
Contributor

@DelazJ DelazJ commented on ef012c4 Nov 2, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rouault I'm not sure it's worth patching 2.16. Afaict there won't be another release of 2.16.
@jef-n ?

@jef-n
Copy link
Member

@jef-n jef-n commented on ef012c4 Nov 2, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right. Point releases are only done for the latest and the long term release.

Please sign in to comment.