Skip to content

Commit

Permalink
:fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
b3j0f committed Oct 3, 2015
1 parent 8eb5bd2 commit 8ccd422
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions b3j0f/sync/test/store.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,7 @@ def test_classname(self):

count = 5

accessors = []

for i in range(count):
accessors.append(accessorname)
accessors = [accessorname for _ in range(count)]

self.store.accessors = accessors

Expand All @@ -156,10 +153,7 @@ def test_instances(self):

accessor = TestAccessor(store=self)

accessors = []

for i in range(count):
accessors.append(accessor)
accessors = [accessor for _ in range(count)]

self.store.accessors = accessors

Expand Down

0 comments on commit 8ccd422

Please sign in to comment.