~people-project/people-core/deep-refactoring

« back to all changes in this revision

Viewing changes to backends/sqlite/tests/test-contact-source-persistence.vala

  • Committer: Ali Sabil
  • Date: 2009-01-16 23:21:16 UTC
  • Revision ID: ali.sabil@gmail.com-20090116232116-1ij6yb66mgh77j1h
- Updated the SQLite backend

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
                        contact_source_factory = new Backend.Sqlite.ContactSourceFactory ();
19
19
                        parameters = new Gee.HashMap<string, string> (str_hash, str_equal, str_equal);
20
20
                        parameters.set ("db-path", "/tmp/people-test-contact-source-persistence-sqlite.db");
21
 
                        contact_source = contact_source_factory.request_contact_source (parameters);
 
21
                        contact_source = contact_source_factory.request_contact_source (parameters).get_result ();
22
22
 
23
23
                        base.set_up ();
24
24
                }