Skip to content

Commit

Permalink
fix flake8 code style
Browse files Browse the repository at this point in the history
  • Loading branch information
amenezes committed Mar 1, 2019
1 parent 48b794f commit c8b4d6c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ class TestFilter(unittest.TestCase):
"""Unit tests to filter enum."""

def test_consul_catalog_enum_values(self):
"""Tests the enum values."""
"""Tests the enum values from consul's catalog."""
self.assertEqual(Filter.FIRST_ITEM.value, 0)
self.assertEqual(Filter.PAYLOAD.value, 1)

def test_default_timeout_enum_value(self):
"""Tests the default value for reconnect timeout."""
self.assertEqual(Filter.DEFAULT_TIMEOUT.value, 30)


Expand Down

0 comments on commit c8b4d6c

Please sign in to comment.