Skip to content

Commit

Permalink
tests: fix expected error comment (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaicoTimmerman authored May 11, 2021
1 parent bd16b2d commit cadd441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/files/column_server_default_ticket_81.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ class A:
b = Column(Boolean, nullable=False, server_default=true())
c = Column(DateTime, server_default=func.now(), nullable=False)

# EXPECTED: error: Cannot infer type argument 1 of "Column"
# EXPECTED_MYPY: Cannot infer type argument 1 of "Column"
d = Column(Boolean, server_default=func.now(), nullable=False)

0 comments on commit cadd441

Please sign in to comment.