From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp15.mail.ru (smtp15.mail.ru [94.100.176.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id DBFCF452566 for ; Fri, 1 Nov 2019 00:37:00 +0300 (MSK) From: Vladislav Shpilevoy Date: Thu, 31 Oct 2019 22:42:32 +0100 Message-Id: <6d8dc914c62ed607d38207ad8983ee28ddfb1bc1.1572558071.git.v.shpilevoy@tarantool.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 1/3] test: fix flaky box/access_sysview.test.lua List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tarantool-patches@dev.tarantool.org Some guest user privileges were not revoked in the end. --- test/box/access_sysview.result | 2 +- test/box/access_sysview.test.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/box/access_sysview.result b/test/box/access_sysview.result index 3072b7394..1f33deceb 100644 --- a/test/box/access_sysview.result +++ b/test/box/access_sysview.result @@ -689,7 +689,7 @@ box.session.su('admin') --- ... -- _vcollation is readable anyway. -box.schema.user.revoke("guest", "read", "space", "_collation") +box.schema.user.revoke("guest", "read, write, alter, execute", "space", "_collation") --- ... box.session.su("guest") diff --git a/test/box/access_sysview.test.lua b/test/box/access_sysview.test.lua index 031df28aa..17420ae33 100644 --- a/test/box/access_sysview.test.lua +++ b/test/box/access_sysview.test.lua @@ -287,7 +287,7 @@ box.space._vcollation:select{0} box.session.su('admin') -- _vcollation is readable anyway. -box.schema.user.revoke("guest", "read", "space", "_collation") +box.schema.user.revoke("guest", "read, write, alter, execute", "space", "_collation") box.session.su("guest") #box.space._vcollation:select{} session.su('admin') -- 2.21.0 (Apple Git-122.2)