Skip to content

Commit

Permalink
change of behavior in previous commit, fixing tests, WARNING
Browse files Browse the repository at this point in the history
  • Loading branch information
mdipierro committed Dec 10, 2018
1 parent dda7c65 commit 68eb263
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/sql.py
Expand Up @@ -2559,9 +2559,9 @@ def testCase(self):
Field('words', 'text'))

blather = 'blah blah and so'
t0[0] = {'f': 'content'}
t1[0] = {'B': int(t0[1]['id']),
'words': blather}
t0[None] = {'f': 'content'}
t1[None] = {'B': int(t0[1]['id']),
'words': blather}

r = db(db.t0.id==db.b.B).select()

Expand All @@ -2585,7 +2585,7 @@ def testCase(self):
return
raise e

t0[0] = dict(a_a = 'a_a', a_A='a_A')
t0[None] = dict(a_a = 'a_a', a_A='a_A')

self.assertEqual(t0[1].a_a, 'a_a')
self.assertEqual(t0[1].a_A, 'a_A')
Expand Down

0 comments on commit 68eb263

Please sign in to comment.