Skip to content

Commit

Permalink
fix: update temperature tests dependencies
Browse files Browse the repository at this point in the history
Helped-by: Jim Medlock \ <[email protected]>
  • Loading branch information
alcb1310 committed Jan 12, 2025
1 parent 97cb75c commit 77b94ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/temperature/celsius.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { it, describe, expect } from "@jest/globals";
import convertToCelcius from "../src/temperature/celcius.js";
import convertToCelcius from "../../src/temperature/celcius.js";

describe("Convert to Celcius", () => {
it("should convert 32°F to equal 0°C", () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/temperature/farenheit.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { it, describe, expect } from "@jest/globals";
import convertToFarenheit from "../src/temperature/farenheit.js";
import convertToFarenheit from "../../src/temperature/farenheit.js";

describe("Convert to Celcius", () => {
it("should convert 0°C to equal 32°F", () => {
Expand Down

0 comments on commit 77b94ab

Please sign in to comment.