Skip to content

Commit

Permalink
update specs imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jjspace committed Jan 23, 2025
1 parent b1ac029 commit 1423809
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
16 changes: 9 additions & 7 deletions Specs/addDefaultMatchers.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
import {
Cartesian2,
defaultValue,
defined,
DeveloperError,
FeatureDetection,
PrimitiveType,
Buffer,
BufferUsage,
ClearCommand,
DrawCommand,
ShaderProgram,
VertexArray,
Math as CesiumMath,
} from "@cesium/engine";
import {
Cartesian2,
defaultValue,
defined,
DeveloperError,
FeatureDetection,
PrimitiveType,
Math as CesiumMath,
} from "@cesium/core";
import equals from "./equals.js";

function createMissingFunctionMessageFunction(
Expand Down
2 changes: 1 addition & 1 deletion Specs/equals.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FeatureDetection } from "@cesium/engine";
import { FeatureDetection } from "@cesium/core";

function isTypedArray(o) {
return FeatureDetection.typedArrayTypes.some(function (type) {
Expand Down
2 changes: 1 addition & 1 deletion Specs/equalsMethodEqualityTester.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defined } from "@cesium/engine";
import { defined } from "@cesium/core";

function equalsMethodEqualityTester(a, b) {
let to_run;
Expand Down
2 changes: 1 addition & 1 deletion Specs/spec-main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import customizeJasmine from "./customizeJasmine.js";
import { defined, queryToObject } from "../packages/engine/index.js";
import { defined, queryToObject } from "../packages/core/index.js";

const queryString = queryToObject(window.location.search.substring(1));

Expand Down

0 comments on commit 1423809

Please sign in to comment.