Skip to content

Commit

Permalink
Nits
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Mantica committed Mar 4, 2019
1 parent ecb0ea9 commit b1226ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion graphql_compiler/tests/test_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -2815,7 +2815,7 @@ def test_gremlin_type_hints(self):
g.V('@class', 'Animal')
.as('Animal___1')
.out('Entity_Related')
.filter{it, m -> ['BirthEvent','Event','FeedingEvent'].contains(it['@class'])}
.filter{it, m -> ['BirthEvent', 'Event', 'FeedingEvent'].contains(it['@class'])}
.as('Animal__out_Entity_Related___1')
.back('Animal___1')
.transform{it, m -> new com.orientechnologies.orient.core.record.impl.ODocument([
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate_test_sql/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


def _create_feeding_event_statement(event_name):
"""Return a SQL statement to create a Event vertex."""
"""Return a SQL statement to create a FeedingEvent vertex."""
field_name_to_value = {'name': event_name, 'event_date': get_random_date(), 'uuid': get_uuid()}
return create_vertex_statement('FeedingEvent', field_name_to_value)

Expand Down

0 comments on commit b1226ca

Please sign in to comment.