Skip to content

Commit

Permalink
Remove additional sameHydrate from merge
Browse files Browse the repository at this point in the history
  • Loading branch information
sjd210 committed Nov 26, 2024
1 parent 4e52f32 commit 68a038f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/models/Chemistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ const STARTING_RESPONSE: (options?: ChemistryOptions, coefficientScalingValue?:
sameHydrate: true,
sameElements: true,
sameState: true,
sameHydrate: true,
sameCharge: true,
sameArrow: true,
sameBrackets: true,
Expand Down
2 changes: 1 addition & 1 deletion test/models/Chemistry.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ describe("testCheck Ions", () => {
expect(moleculeIncorrect.typeMismatch).toBeFalsy();
expect(moleculeIncorrect.termAtomCount?.Cl).toBe(1);
expect(chargeIncorrect.isEqual).toBeFalsy();
expect(chargeIncorrect.termChargeCount).toBe(-1);
expect(chargeIncorrect.termChargeCount).toBe(-2);
expect(lengthIncorrect.isEqual).toBeFalsy();
}
);
Expand Down

0 comments on commit 68a038f

Please sign in to comment.