Skip to content

Commit

Permalink
Fixed tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbywater committed May 2, 2017
1 parent 6df5898 commit 63f0a0b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion eventsourcing/example/flaskapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def init_example_application_with_sqlalchemy(session):
session=session,
)
init_example_application(
integer_sequenced_active_record_strategy=active_record_strategy
entity_active_record_strategy=active_record_strategy
)


Expand Down
2 changes: 1 addition & 1 deletion eventsourcing/tests/test_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def test_log_performance(self):
with self.construct_application() as app:
example_id = uuid4()
log = start_new_timebucketedlog(example_id, bucket_size='year')
log_reader = get_timebucketedlog_reader(log, app.timestamp_sequenced_event_store)
log_reader = get_timebucketedlog_reader(log, app.log_event_store)

# Write a load of messages.
start_write = time.time()
Expand Down
2 changes: 1 addition & 1 deletion eventsourcing/tests/test_suffix_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#
# def setUp(self):
# self.app = SuffixTreeApplication(
# integer_sequenced_active_record_strategy=self.integer_sequence_active_record_strategy,
# entity_active_record_strategy=self.integer_sequence_active_record_strategy,
# )
#
# def tearDown(self):
Expand Down

0 comments on commit 63f0a0b

Please sign in to comment.