When run through external means (such as the binding tester), the size limits tests should not change db level defaults.

This commit is contained in:
A.J. Beamon 2019-07-19 09:03:11 -07:00
parent bc5c65e5ab
commit cbc913f902
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,6 @@ def setValueWithLimit(tr, key, value, limit):
tr[key] = value
def test_size_limit_option(db):
db.options.set_transaction_timeout(2000) # 2 seconds
db.options.set_transaction_retry_limit(3)
value = b'a' * 1024
setValue(db, b't1', value)
@ -94,5 +92,7 @@ def test_get_approximate_size(tr):
if __name__ == '__main__':
clusterFile = sys.argv[1]
db = fdb.open(clusterFile)
db.options.set_transaction_timeout(2000) # 2 seconds
db.options.set_transaction_retry_limit(3)
test_size_limit_option(db)
test_get_approximate_size(db)