Skip to content

Commit

Permalink
fix flake8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
vchrombie committed May 24, 2020
1 parent fd39363 commit 88b5402
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/test_zulip.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@
#


import copy
import unittest
import datetime
import os

import httpretty
Expand All @@ -35,7 +33,6 @@
ZulipClient,
ZulipCommand)

from base import TestCaseBackendArchive

ZULIP_CHAT_URL = 'https://example.zulipchat.com/'
ZULIP_CHAT_API_URL = '/api/v1/messages'
Expand Down Expand Up @@ -73,7 +70,7 @@ def test_inialization(self):
"""Test whether attributes are initializated"""

backend = Zulip(url='https://example.zulipchat.com/', stream='abcdefghijkl',
email='bot@zulipchat.com', api_token='aaaa', tag='test')
email='bot@zulipchat.com', api_token='aaaa', tag='test')
self.assertEqual(backend.origin, 'https://example.zulipchat.com/abcdefghijkl')
self.assertEqual(backend.url, 'https://example.zulipchat.com/')
self.assertEqual(backend.stream, 'abcdefghijkl')
Expand Down

0 comments on commit 88b5402

Please sign in to comment.