Show
Ignore:
Timestamp:
09/15/09 16:01:16 (3 years ago)
Author:
ged
Message:

plug a few deprecation warnings in the test suite

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • elixir/trunk/tests/test_sa_integration.py

    r428 r457  
    4040        b1.a = A(name='a1') 
    4141 
    42         session.save(b1) 
     42        session.add(b1) 
    4343        session.commit() 
    4444        session.clear() 
     
    7878        b1 = B(name='b1', a=a1) 
    7979 
    80         session.save(b1) 
     80        session.add(b1) 
    8181        session.commit() 
    8282        session.clear()