Skip to content

Commit

Permalink
Update specs for removed logging flag
Browse files Browse the repository at this point in the history
  • Loading branch information
javagl committed Aug 31, 2023
1 parent 8fc8544 commit 42c0436
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions specs/tilesetProcessing/TilesetUpgraderSpec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ import { TilesetUpgrader } from "../../src/tilesetProcessing/TilesetUpgrader";

import { Tileset } from "../../src/structure/Tileset";

// By default, the `TilesetUpgrader` will log messages for
// each modification (upgrade step) to the console.
// This flag can be used to disable the log messages:
const quiet = true;
const gltfUpgradeOptions = undefined;

// A unit bounding box, used for all tiles
Expand Down Expand Up @@ -68,7 +64,6 @@ describe("TilesetUpgrader", function () {
it("upgrades the version number to 1.1", async function () {
const targetVersion = "1.1";
const tilesetUpgrader = new TilesetUpgrader(
quiet,
targetVersion,
gltfUpgradeOptions
);
Expand All @@ -81,7 +76,6 @@ describe("TilesetUpgrader", function () {
it("upgrades the content.url to content.uri", async function () {
const targetVersion = "1.0";
const tilesetUpgrader = new TilesetUpgrader(
quiet,
targetVersion,
gltfUpgradeOptions
);
Expand All @@ -97,7 +91,6 @@ describe("TilesetUpgrader", function () {
it("upgrades the refine values to be in uppercase", async function () {
const targetVersion = "1.0";
const tilesetUpgrader = new TilesetUpgrader(
quiet,
targetVersion,
gltfUpgradeOptions
);
Expand All @@ -113,7 +106,6 @@ describe("TilesetUpgrader", function () {
it("removes the unnecessary extension declaration for 3DTILES_content_gltf", async function () {
const targetVersion = "1.1";
const tilesetUpgrader = new TilesetUpgrader(
quiet,
targetVersion,
gltfUpgradeOptions
);
Expand Down

0 comments on commit 42c0436

Please sign in to comment.