Skip to content

Commit

Permalink
test: Fix import exception class name (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
timmc-edx authored Aug 26, 2022
1 parent b2b0405 commit 10aa36a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ Unreleased

*

[0.4.4] - 2022-08-26
********************

Fixed
=====

* Fixed bug in test module for when confluent-kafka isn't present

[0.4.3] - 2022-08-24
********************

Expand Down
2 changes: 1 addition & 1 deletion edx_event_bus_kafka/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Kafka implementation for Open edX event bus.
"""

__version__ = '0.4.3'
__version__ = '0.4.4'
2 changes: 1 addition & 1 deletion edx_event_bus_kafka/consumer/tests/test_event_consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# See https://github.com/openedx/event-bus-kafka/blob/main/docs/decisions/0005-optional-import-of-confluent-kafka.rst
try:
from confluent_kafka.serialization import StringSerializer
except ImportExcept: # pragma: no cover
except ImportError: # pragma: no cover
pass


Expand Down

0 comments on commit 10aa36a

Please sign in to comment.