diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-09-26 10:35:55 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-09-26 10:35:55 -0400 |
| commit | 0895e34d21c9818ec73e5c87e35ad6ba5c05acbd (patch) | |
| tree | 749dcdf9b3611e379f2faf0f229e310b4102f9b5 /test/orm/_fixtures.py | |
| parent | 0c7b989ce5e50e39be03870e4ee3f809918af3b6 (diff) | |
| download | sqlalchemy-0895e34d21c9818ec73e5c87e35ad6ba5c05acbd.tar.gz | |
- fix empty row insert in fixture, [ticket:2573]
Diffstat (limited to 'test/orm/_fixtures.py')
| -rw-r--r-- | test/orm/_fixtures.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/_fixtures.py b/test/orm/_fixtures.py index d0d3a9ec4..e51924b77 100644 --- a/test/orm/_fixtures.py +++ b/test/orm/_fixtures.py @@ -275,7 +275,7 @@ class FixtureTest(fixtures.MappedTest): ), nodes = ( - ('id', 'parent_id', 'data') + ('id', 'parent_id', 'data'), ), composite_pk_table = ( |
