Fix unit test
This commit is contained in:
parent
a463f96167
commit
1fe1dbe92d
|
|
@ -172,7 +172,7 @@ mutation AddRoomEntry($input: AddRoomEntryInput!){
|
||||||
# room = graphene.ID(required=True)
|
# room = graphene.ID(required=True)
|
||||||
room_entry = {
|
room_entry = {
|
||||||
'title': 'Bad Actor!',
|
'title': 'Bad Actor!',
|
||||||
'slug': self.room.slug
|
'roomSlug': self.room.slug
|
||||||
}
|
}
|
||||||
|
|
||||||
result = self.get_client(self.yet_another_user).execute(mutation, variables={
|
result = self.get_client(self.yet_another_user).execute(mutation, variables={
|
||||||
|
|
|
||||||
|
|
@ -1401,7 +1401,7 @@ input UpdateRoomArgument {
|
||||||
input UpdateRoomEntryArgument {
|
input UpdateRoomEntryArgument {
|
||||||
title: String!
|
title: String!
|
||||||
contents: [ContentElementInput]
|
contents: [ContentElementInput]
|
||||||
id: ID!
|
slug: String!
|
||||||
}
|
}
|
||||||
|
|
||||||
input UpdateRoomEntryInput {
|
input UpdateRoomEntryInput {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue