From commits-return-1536-archive-asf-public=cust-asf.ponee.io@superset.incubator.apache.org Tue Sep 18 05:29:24 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id BB095180627 for ; Tue, 18 Sep 2018 05:29:23 +0200 (CEST) Received: (qmail 16856 invoked by uid 500); 18 Sep 2018 03:29:22 -0000 Mailing-List: contact commits-help@superset.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@superset.incubator.apache.org Delivered-To: mailing list commits@superset.incubator.apache.org Received: (qmail 16847 invoked by uid 99); 18 Sep 2018 03:29:22 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Sep 2018 03:29:22 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 3172782C0B; Tue, 18 Sep 2018 03:29:22 +0000 (UTC) Date: Tue, 18 Sep 2018 03:29:22 +0000 To: "commits@superset.apache.org" Subject: [incubator-superset] branch master updated: Fixing linting error in macro_tests (#5918) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <153724136197.9025.14671929420176364476@gitbox.apache.org> From: graceguo@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-superset X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 39ef77abc5a15324387e144696d9a37068164a28 X-Git-Newrev: 74940e6a1638395ecaa20799d4e70892aa7fdd8f X-Git-Rev: 74940e6a1638395ecaa20799d4e70892aa7fdd8f X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. graceguo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-superset.git The following commit(s) were added to refs/heads/master by this push: new 74940e6 Fixing linting error in macro_tests (#5918) 74940e6 is described below commit 74940e6a1638395ecaa20799d4e70892aa7fdd8f Author: Christine Chambers AuthorDate: Mon Sep 17 20:29:14 2018 -0700 Fixing linting error in macro_tests (#5918) --- tests/macro_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/macro_tests.py b/tests/macro_tests.py index 4f77a68..8c887ac 100644 --- a/tests/macro_tests.py +++ b/tests/macro_tests.py @@ -5,10 +5,10 @@ from __future__ import print_function from __future__ import unicode_literals from flask import json -from tests.base_tests import SupersetTestCase from superset import app from superset import jinja_context +from tests.base_tests import SupersetTestCase class MacroTestCase(SupersetTestCase):