Skip to content

Commit

Permalink
fix: biome indentation check
Browse files Browse the repository at this point in the history
  • Loading branch information
scolladon committed Oct 18, 2024
1 parent 7e71c25 commit 658d2ae
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions __tests__/unit/lib/utils/gitLfsHelper.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ import {
describe('isLFS', () => {
it('returns true when called with LFS file', async () => {
// Arrange
const lfsFileContent = Buffer.from(`version https://git-lfs.github.com/spec/v1
const lfsFileContent =
Buffer.from(`version https://git-lfs.github.com/spec/v1
oid sha256:0a4ca7e5eca75024197fff96ef7e5de1b2ca35d6c058ce76e7e0d84bee1c8b14
size 72`)

Expand All @@ -34,7 +35,8 @@ describe('isLFS', () => {
describe('getLFSObjectContentPath', () => {
it('with LFS content, it creates LFS file path', async () => {
// Arrange
const lfsFileContent = Buffer.from(`version https://git-lfs.github.com/spec/v1
const lfsFileContent =
Buffer.from(`version https://git-lfs.github.com/spec/v1
oid sha256:0a4ca7e5eca75024197fff96ef7e5de1b2ca35d6c058ce76e7e0d84bee1c8b14
size 72`)

Expand Down

0 comments on commit 658d2ae

Please sign in to comment.