Skip to content

Commit 6c6cd59

Browse files
committed
Test Case fix: Removed round brackets around constraint 'check' expression
1 parent 79c3552 commit 6c6cd59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/functional/adapter/constraints/fixtures.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
- type: not_null
195195
- type: primary_key
196196
- type: check
197-
expression: (id > 0)
197+
expression: id > 0
198198
tests:
199199
- unique
200200
- name: color
@@ -269,7 +269,7 @@
269269
enforced: true
270270
constraints:
271271
- type: check
272-
expression: (id > 0)
272+
expression: id > 0
273273
- type: primary_key
274274
columns: [ id ]
275275
- type: unique

0 commit comments

Comments
 (0)