We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8bb90b commit 9bdd02fCopy full SHA for 9bdd02f
libtiledbsoma/test/test_query_condition.py
@@ -54,7 +54,7 @@ def test_query_condition_int():
54
55
def test_query_condition_string():
56
uri = os.path.join(SOMA_URI, "obs")
57
- condition = "louvain == b'NK cells'"
+ condition = "louvain == 'NK cells'"
58
59
pandas = pandas_query(uri, condition)
60
@@ -90,7 +90,7 @@ def test_query_condition_and():
90
91
def test_query_condition_and_or():
92
93
- condition = "(percent_mito > 0.02 and n_genes > 700) or (percent_mito < 0.015 and louvain == b'B cells')"
+ condition = "(percent_mito > 0.02 and n_genes > 700) or (percent_mito < 0.015 and louvain == 'B cells')"
94
95
96
0 commit comments