Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

作品編集でタグを編集できないのを修正 #248

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion api/tests/graphql/test_update_artwork.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from goduploader.db import session
from goduploader.model import Artwork, Tag
from graphene.relay import Node
from goduploader.model.artwork import ArtworkRatingEnum
from graphene.relay import Node
from tests.util import create_account, create_artwork, mock_context

UPDATE_ARTWORK_QUERY = """
Expand Down Expand Up @@ -95,3 +95,6 @@ def test_update_artwork_tag(client):

tag_2 = session.query(Tag).filter_by(name="tag_2").first()
assert tag_2.artworks_count == 1

after_artwork = session.query(Artwork).filter_by(id=artwork.id).first()
assert len(after_artwork.tags) == 1
Comment on lines +99 to +100
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

これふつうに通っているな