From ee0df8be95834eb494f854d84db26fb1b8ede92d Mon Sep 17 00:00:00 2001 From: someposer Date: Fri, 3 Nov 2017 15:57:33 -0500 Subject: [PATCH] Fixed issue with Transport test --- hc/api/tests/test_notify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hc/api/tests/test_notify.py b/hc/api/tests/test_notify.py index b31c4106..12fc7779 100644 --- a/hc/api/tests/test_notify.py +++ b/hc/api/tests/test_notify.py @@ -458,4 +458,4 @@ class NotifyTestCase(BaseTestCase): def test_transport_notify(self): self._setup_data("webhook", "http://example") with self.assertRaises(NotImplementedError): - Transport.notify(self.channel, self.check) + Transport(self.channel).notify(self.check)