Skip to content

Commit

Permalink
Rename files
Browse files Browse the repository at this point in the history
Switch from camelCase to kebab-case
  • Loading branch information
Cow-Van committed Jan 19, 2024
1 parent 3795b70 commit 21056a4
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/models/Session.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ResultSetHeader, RowDataPacket } from "mysql2";

import database from "../database";
import { RowNotFoundError } from "../utils/errors";
import updateBuilder from "../utils/updateBuilder";
import updateBuilder from "../utils/update-builder";

interface Session {
session_id: number;
Expand Down
2 changes: 1 addition & 1 deletion src/models/User.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ResultSetHeader, RowDataPacket } from "mysql2";

import database from "../database";
import { RowNotFoundError } from "../utils/errors";
import updateBuilder from "../utils/updateBuilder";
import updateBuilder from "../utils/update-builder";

interface User {
user_id: number;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { expect } from "chai";

import updateBuilder from "../../utils/updateBuilder";
import updateBuilder from "../../utils/update-builder";

describe("SQL Update Query Builder", () => {
it("returns full prepared statement given table, updates, and conditions", () => {
Expand Down
File renamed without changes.

0 comments on commit 21056a4

Please sign in to comment.