Skip to content

Commit 1ac1e25

Browse files
Fix interop tests
1 parent bce37f3 commit 1ac1e25

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apis/system/tests/test_dataframe_write_python_read_r.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def dataframe(self):
2626
pydict["bar"] = [4.1, 5.2, 6.3, 7.4, 8.5]
2727
pydict["baz"] = ["apple", "ball", "cat", "dog", "egg"]
2828
pydict["quux"] = [True, False, False, True, False]
29-
rb = pa.Table.from_pydict(pydict, schema=asch.insert(0, pa.field('soma_joinid', pa.int64())))
29+
rb = pa.Table.from_pydict(pydict, schema=asch.insert(0, pa.field("soma_joinid", pa.int64())))
3030
with soma.DataFrame.open(self.uri, "w") as sdf:
3131
sdf.write(rb)
3232

apis/system/tests/test_dataframe_write_r_read_python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ def R_dataframe(self):
2424
sdf <- SOMADataFrameCreate("{self.uri}", df_schema, index_column_names=c("foo"), domain=list(foo=c(0,99)))
2525
2626
df <- data.frame(
27-
soma_joinid = bit64::as.integer64(c(1,2,3,4,5)),
2827
foo = as.integer(c(10, 20, 30, 40, 50)),
28+
soma_joinid = bit64::as.integer64(c(1,2,3,4,5)),
2929
bar = c(4.1, 5.2, 6.3, 7.4, 8.5),
3030
baz = c("apple", "ball", "cat", "dog", "egg"),
3131
quux = c(TRUE, FALSE, FALSE, TRUE, FALSE)

0 commit comments

Comments
 (0)