26 lines
750 B
Diff
26 lines
750 B
Diff
|
|
From f0bc203c52b417bf815ac2b0dffbd1f2cd744a8f Mon Sep 17 00:00:00 2001
|
||
|
|
From: Ask Solem <asksol@robinhood.com>
|
||
|
|
Date: Mon, 26 Nov 2018 10:26:04 -0800
|
||
|
|
Subject: [PATCH] Fixes test issue after table serializer choice pull req
|
||
|
|
|
||
|
|
---
|
||
|
|
t/unit/stores/test_base.py | 2 ++
|
||
|
|
1 file changed, 2 insertions(+)
|
||
|
|
|
||
|
|
diff --git a/t/unit/stores/test_base.py b/t/unit/stores/test_base.py
|
||
|
|
index 0c663718..39cdb072 100644
|
||
|
|
--- a/t/unit/stores/test_base.py
|
||
|
|
+++ b/t/unit/stores/test_base.py
|
||
|
|
@@ -125,6 +125,8 @@ class test_SerializedStore:
|
||
|
|
url='foo://',
|
||
|
|
app=app,
|
||
|
|
table=Mock(name='table'),
|
||
|
|
+ key_serializer='json',
|
||
|
|
+ value_serializer='json',
|
||
|
|
)
|
||
|
|
|
||
|
|
def test_apply_changelog_batch(self, *, store):
|
||
|
|
--
|
||
|
|
2.33.0
|
||
|
|
|