Skip to content

Commit

Permalink
unittest: fix no pickle
Browse files Browse the repository at this point in the history
  • Loading branch information
lexdene committed Nov 29, 2023
1 parent fbf4acf commit a136923
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_cmemcached_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ class NoPickle(object):
def __getattr__(self, name):
pass

def __getstate__(self):
raise Exception('can not be pickled')


class CmemcachedRegressionCase(unittest.TestCase):

Expand Down

0 comments on commit a136923

Please sign in to comment.