From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 27F9320229 for ; Wed, 31 Aug 2016 02:50:47 +0000 (UTC) From: Eric Wong To: mogilefs-client-public@bogomips.org Subject: [PATCH 1/6] test_fresh: do not delete non-existent domain Date: Wed, 31 Aug 2016 02:50:41 +0000 Message-Id: <20160831025046.24153-2-e@80x24.org> In-Reply-To: <20160831025046.24153-1-e@80x24.org> References: <20160831025046.24153-1-e@80x24.org> List-Id: This test bug was exposed due to using an old MogileFS-Server without commit d0ee2a27253ade4b50ef5b91471f4f520a67bf8c ("Work with DBD::SQLite's latest lock errors") --- test/test_fresh.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_fresh.rb b/test/test_fresh.rb index 9499db5..ff7bae6 100644 --- a/test/test_fresh.rb +++ b/test/test_fresh.rb @@ -88,7 +88,7 @@ def test_new_file_info_checksum end test_new_file_info(:md5) ensure - @admin.delete_class @domain, "check" + @admin.delete_class(@domain, "check") if @domain end def test_create_open_close_opts -- EW