Skip to content

Commit

Permalink
use " when ` not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
CForrest97 committed Dec 8, 2023
1 parent 5127a77 commit 6bc8c7b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/.template/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { day } from "./index";

describe(`2023/__`, () => {
describe("2023/__", () => {
describe("part A", () => {
it("should solve the example input", async () => {
const input = await day.partA.getExampleInput();
Expand Down
2 changes: 1 addition & 1 deletion src/2023/03/gearRatios.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { gearRatios } from "./gearRatios";

describe(`2023/03`, () => {
describe("2023/03", () => {
describe("part A", () => {
it("should solve the example input", async () => {
const input = await gearRatios.partA.getExampleInput();
Expand Down
2 changes: 1 addition & 1 deletion src/2023/04/scratchcards.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { scratchcards } from "./scratchcards";

describe(`2023/04`, () => {
describe("2023/04", () => {
describe("part A", () => {
it("should solve the example input", async () => {
const input = await scratchcards.partA.getExampleInput();
Expand Down
2 changes: 1 addition & 1 deletion src/2023/05/ifYouGiveASeedAFertilizer.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ifYouGiveASeedAFertilizer } from "./ifYouGiveASeedAFertilizer";

describe(`2023/05`, () => {
describe("2023/05", () => {
describe("part A", () => {
it("should solve the example input", async () => {
const input = await ifYouGiveASeedAFertilizer.partA.getExampleInput();
Expand Down

0 comments on commit 6bc8c7b

Please sign in to comment.