Skip to content

Commit 1c80b76

Browse files
author
Zoran Cvetkov
committed
fix postgress_writable tests
1 parent d8d240d commit 1c80b76

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

store/test-store/tests/postgres/writable.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ fn count_key(id: &str) -> EntityKey {
114114
async fn insert_count(store: &Arc<DieselSubgraphStore>, deployment: &DeploymentLocator, count: u8) {
115115
let data = entity! { TEST_SUBGRAPH_SCHEMA =>
116116
id: "1",
117-
count: count as i32
117+
count: count as i32,
118+
vid: count as i64,
118119
};
119120
let entity_op = EntityOperation::Set {
120121
key: count_key(&data.get("id").unwrap().to_string()),

0 commit comments

Comments
 (0)