From 2312caad7633d7aae11adebd87e4f932431bf49a Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Mon, 8 Jul 2019 15:39:11 -0600 Subject: [PATCH] tests/sizes: Fix call to commit_transaction() The GIR for commit_transaction() only has a single argument for the GCancellable. Calling it with 2 arguments prints a GJS warning: Gjs-Message: 15:37:40.287: JS WARNING: [/home/dan/src/ostree/tests/test-sizes.js 56]: Too many arguments to method OSTree.Repo.commit_transaction: expected 1, got 2 Currently this is harmless, but it could become a hard error in GJS at some point. Closes: #1884 Approved by: cgwalters --- tests/test-sizes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-sizes.js b/tests/test-sizes.js index 5114dd64..d923e749 100755 --- a/tests/test-sizes.js +++ b/tests/test-sizes.js @@ -53,7 +53,7 @@ let [,dirTree] = repo.write_mtree(mtree, null); let [,commit] = repo.write_commit(null, 'Some subject', 'Some body', null, dirTree, null); print("commit => " + commit); -repo.commit_transaction(null, null); +repo.commit_transaction(null); // Test the sizes metadata let [,commitVariant] = repo.load_variant(OSTree.ObjectType.COMMIT, commit);