Skip to content

Commit e6157b5

Browse files
authored
deps: update dependency com.google.cloud:google-cloud-conformance-tests to v0.0.13 (#411)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:google-cloud-conformance-tests](https://togithub.com/googleapis/java-shared-config) | patch | `0.0.12` -> `0.0.13` | --- ### Renovate configuration :date: **Schedule**: At any time (no schedule defined). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-firestore).
1 parent c9b34ed commit e6157b5

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

google-cloud-firestore/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
<dependency>
143143
<groupId>com.google.cloud</groupId>
144144
<artifactId>google-cloud-conformance-tests</artifactId>
145-
<version>0.0.12</version>
145+
<version>0.0.13</version>
146146
<scope>test</scope>
147147
</dependency>
148148
<dependency>

google-cloud-firestore/src/test/java/com/google/cloud/firestore/ConformanceTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -554,6 +554,9 @@ private Query applyClause(Query query, Clause clause) {
554554
case ">":
555555
query = query.whereGreaterThan(fieldPath, value);
556556
break;
557+
case "!=":
558+
query = query.whereNotEqualTo(fieldPath, value);
559+
break;
557560
default:
558561
throw new UnsupportedOperationException();
559562
}

0 commit comments

Comments
 (0)