Skip to content

Commit

Permalink
Fixup test_context.py unittest import
Browse files Browse the repository at this point in the history
  • Loading branch information
Dana Powers committed Sep 11, 2014
1 parent 2cfec9d commit 04dbd0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_context.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
"""
OffsetCommitContext tests.
"""
from unittest2 import TestCase
from . import unittest

from mock import MagicMock, patch

from kafka.common import OffsetOutOfRangeError
from kafka.context import OffsetCommitContext


class TestOffsetCommitContext(TestCase):
class TestOffsetCommitContext(unittest.TestCase):
"""
OffsetCommitContext tests.
"""
Expand Down

0 comments on commit 04dbd0e

Please sign in to comment.