# # # patch "tests/heads_of_certs/__driver__.lua" # from [6c2ce78bb9caf92755a69ae8e9fa6155c948ba69] # to [a986f8c9041bea24f2bb3a2b667177dcea111a2b] # ============================================================ --- tests/heads_of_certs/__driver__.lua 6c2ce78bb9caf92755a69ae8e9fa6155c948ba69 +++ tests/heads_of_certs/__driver__.lua a986f8c9041bea24f2bb3a2b667177dcea111a2b @@ -16,12 +16,12 @@ check(mtn("cert", second, "testcert", "v check(mtn("cert", second, "testcert", "value")) -- Check that a log without H: gives both the first and second commit... -check(mtn("log", "--revision=c:testcert", "--last=1"), 0, true, false) +check(mtn("log", "--from=c:testcert", "--last=1"), 0, true, false) check(qgrep("Revision: "..first, "stdout")) check(qgrep("Revision: "..second, "stdout")) -- Check that a log with H: gives only the second commit... -check(mtn("log", "--revision=H:c:testcert", "--last=1"), 0, true, false) +check(mtn("log", "--from=H:c:testcert", "--last=1"), 0, true, false) check(not qgrep("Revision: "..first, "stdout")) check(qgrep("Revision: "..second, "stdout")) -- Note that if the third revision is in the log, something else is wrong...