Skip to content

Commit 6e8acd5

Browse files
committed
fixed tests
1 parent 377058b commit 6e8acd5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_library.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"""
99

1010
import unittest
11-
import pysparql_anything as pysa
11+
import pysparql_anything as sa
1212
from rdflib import Graph
1313

1414

@@ -35,10 +35,10 @@ def test_select(self):
3535
'bindings': [{
3636
'seriesName': {
3737
'type': 'literal',
38-
'value': 'Cougar Town'
38+
'value': 'Friends'
3939
}
4040
},
41-
{'seriesName': {'type': 'literal', 'value': 'Friends'}}
41+
{'seriesName': {'type': 'literal', 'value': 'Cougar Town'}}
4242
]
4343
}
4444
}
@@ -61,5 +61,5 @@ def test_select(self):
6161

6262

6363
if __name__ == '__main__':
64-
engine = pysa.SparqlAnything()
64+
engine = sa.SparqlAnything()
6565
unittest.main(verbosity=2)

0 commit comments

Comments
 (0)