Skip to content

Commit

Permalink
fix(graph*-3.0): only accepts integer or string as id
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Louis Fuchs committed Apr 2, 2020
1 parent 1ba7643 commit 562b4c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caluma/caluma_data_source/tests/test_data_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def __str__(self):
variables = {
"input": {
"question": question.slug,
"document": document.id,
"document": str(document.id),
"value": "something",
}
}
Expand Down

0 comments on commit 562b4c0

Please sign in to comment.