Skip to content

Commit 12ca083

Browse files
committed
Fix test to apply schema name changes
1 parent e2c8f5a commit 12ca083

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/dispatcher_test.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Meta:
1717
"""Schema metadata."""
1818

1919
namespace = "$namespace"
20-
schema_name = "$topic_name"
20+
schema_name = "testSchema"
2121

2222

2323
class TestSource(sasquatch.DataSource):
@@ -48,6 +48,3 @@ def test_get_source_records() -> None:
4848
assert result is not None
4949

5050
assert dispatcher._get_source_records() == [{"value": {"id": "123abc"}}]
51-
52-
53-
# Add test for uses_redis == False

0 commit comments

Comments
 (0)