WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: firebase-dataconnect/connectors/src/androidTest/kotlin/com/google/firebase/dataconnect/connectors/demo/KeyVariablesIntegrationTest.kt
+14-20Lines changed: 14 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -117,9 +117,9 @@ class KeyVariablesIntegrationTest : DemoConnectorIntegrationTestBase() {
117
117
118
118
val key = connector.insertPrimaryKeyIsInt64.execute(foo = id, value = value).data.key
119
119
120
-
val queryResult = connector.getPrimaryKeyIsInt64byKey.execute(key)
120
+
val queryResult = connector.getPrimaryKeyIsInt64ByKey.execute(key)
121
121
queryResult.data.primaryKeyIsInt64 shouldBe
122
-
GetPrimaryKeyIsInt64byKeyQuery.Data.PrimaryKeyIsInt64(foo = id, value = value)
122
+
GetPrimaryKeyIsInt64ByKeyQuery.Data.PrimaryKeyIsInt64(foo = id, value = value)
123
123
}
124
124
125
125
@Test
@@ -160,44 +160,38 @@ class KeyVariablesIntegrationTest : DemoConnectorIntegrationTestBase() {
160
160
val nested6 = createPrimaryKeyNested6(nested3.key, nested4.key)
161
161
val nested7 = createPrimaryKeyNested7(nested5a.key, nested5b.key, nested6.key)
162
162
163
-
val queryResult = connector.getPrimaryKeyNested7byKey.execute(nested7.key)
163
+
val queryResult = connector.getPrimaryKeyNested7ByKey.execute(nested7.key)
Copy file name to clipboardExpand all lines: firebase-dataconnect/connectors/src/androidTest/kotlin/com/google/firebase/dataconnect/connectors/demo/NestedStructsIntegrationTest.kt
+17-17Lines changed: 17 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -35,80 +35,80 @@ class NestedStructsIntegrationTest : DemoConnectorIntegrationTestBase() {
35
35
val nested1a = createNested1(nested1 =null, nested2Keys)
36
36
val nested1b = createNested1(nested1 = nested1a.key, nested2Keys)
37
37
38
-
val queryResult = connector.getNested1byKey.execute(nested1b.key)
38
+
val queryResult = connector.getNested1ByKey.execute(nested1b.key)
Copy file name to clipboardExpand all lines: firebase-dataconnect/connectors/src/androidTest/kotlin/com/google/firebase/dataconnect/connectors/demo/ScalarVariablesAndDataIntegrationTest.kt
+18-18Lines changed: 18 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -754,7 +754,7 @@ class ScalarVariablesAndDataIntegrationTest : DemoConnectorIntegrationTestBase()
0 commit comments