Skip to content

Commit

Permalink
moved variable into test scenario
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-w-nick committed Dec 19, 2024
1 parent fc79a32 commit 56ee535
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions langchain-core/src/structured_query/tests/functional.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ describe("FunctionalTranslator", () => {
});

describe("visitComparison", () => {
const attributesByType = {
string: "stringValue",
number: "numberValue",
boolean: "booleanValue",
};

describe("returns true or false for valid comparisons", () => {
const attributesByType = {
string: "stringValue",
number: "numberValue",
boolean: "booleanValue",
};

const inputValuesByAttribute: { [key in string]: string | number | boolean } = {
stringValue: "value",
numberValue: 1,
Expand Down

0 comments on commit 56ee535

Please sign in to comment.