mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-12-17 05:36:34 +00:00
Python formatting
This commit is contained in:
parent
5c2d6e6510
commit
f65a54eb4a
1 changed files with 3 additions and 2 deletions
|
@ -109,11 +109,12 @@ class ShelfActionViews(TestCase):
|
||||||
shelf = models.Shelf.objects.get(identifier="read")
|
shelf = models.Shelf.objects.get(identifier="read")
|
||||||
|
|
||||||
request = self.factory.post(
|
request = self.factory.post(
|
||||||
"", {
|
"",
|
||||||
|
{
|
||||||
"book": self.book.id,
|
"book": self.book.id,
|
||||||
"shelf": shelf.identifier,
|
"shelf": shelf.identifier,
|
||||||
"change-shelf-from": previous_shelf.identifier,
|
"change-shelf-from": previous_shelf.identifier,
|
||||||
}
|
},
|
||||||
)
|
)
|
||||||
request.user = self.local_user
|
request.user = self.local_user
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue