Skip to content

Commit 40052dc

Browse files
committed
fix(cli): fix drive build test
1 parent e30b934 commit 40052dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/cli/tests/integration/builder/docker.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ describe("when building with the docker builder", () => {
6565
await build("root", drive, image, destination);
6666
const filename = path.join(destination, "root.ext2");
6767
const stat = fs.statSync(filename);
68-
expect(stat.size).toEqual(76087296);
68+
expect(stat.size).toEqual(76079104);
6969
},
7070
);
7171

@@ -84,7 +84,7 @@ describe("when building with the docker builder", () => {
8484
await build("root", drive, image, destination);
8585
const filename = path.join(destination, "root.ext2");
8686
const stat = fs.statSync(filename);
87-
expect(stat.size).toEqual(76087296);
87+
expect(stat.size).toEqual(76079104);
8888
});
8989

9090
tmpdirTest.skip("should build a sqfs drive", async ({ tmpdir }) => {

0 commit comments

Comments
 (0)