Changeset 168

Show
Ignore:
Timestamp:
08/20/08 18:50:19 (3 months ago)
Author:
johnbywater
Message:

Fixed broken test.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/microfacts/tests/getdata/test_dbpedia.py

    r106 r168  
    1 from microfacts.getdata.dbpedia import * 
     1# not everyone will have the libraries installed for working with dbpedia 
     2try: 
     3    from microfacts.getdata.dbpedia import * 
     4except: 
     5    pass 
    26 
    37class TestDescribe: 
  • trunk/microfacts/tests/test_json.py

    r131 r168  
    183183        print out['location'] 
    184184        assert out['location']['type'] == u'Point' 
    185         assert out['location']['coordinates'][1] == -0.12553 
     185        assert out['location']['coordinates'][0] == -0.12553 
    186186 
    187187    def test_dump_thread(self):