Skip to content

Commit 97c3d88

Browse files
authored
Update test.firestore.js
1 parent cc780b4 commit 97c3d88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firestore/test.firestore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ describe("firestore", () => {
856856
it("should handle other wheres", () => {
857857
var citiesRef = db.collection("cities");
858858
// [START example_filters]
859-
const nameQuery = citiesRef.where("state", "==", "CA");
859+
const stateQuery = citiesRef.where("state", "==", "CA");
860860
const populationQuery = citiesRef.where("population", "<", 100000);
861861
const nameQuery = citiesRef.where("name", ">=", "San Francisco");
862862
// [END example_filters]

0 commit comments

Comments
 (0)