Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed Jan 2, 2024
1 parent fd43730 commit a5ac016
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions test/tests/data-definition-test.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
/* global GPUShaderStage */
import { describe, it } from '../mocha-support.js';
import {
makeShaderDataDefinitions,
getBindGroupLayoutDescriptors,
makeBindGroupLayoutDescriptors,
} from '../../dist/1.x/webgpu-utils.module.js';
import { assertDeepEqual, assertEqual, assertFalsy, assertTruthy } from '../assert.js';

Expand Down Expand Up @@ -241,7 +240,7 @@ describe('data-definition-tests', () => {
}
`;
const d = makeShaderDataDefinitions(code);
const layouts = getBindGroupLayoutDescriptors(d, {
const layouts = makeBindGroupLayoutDescriptors(d, {
vertex: {
entryPoint: 'vs',
},
Expand Down Expand Up @@ -377,7 +376,7 @@ describe('data-definition-tests', () => {
}
`;
const d = makeShaderDataDefinitions(code);
const layouts = getBindGroupLayoutDescriptors(d, {
const layouts = makeBindGroupLayoutDescriptors(d, {
vertex: {
entryPoint: 'vs',
},
Expand Down Expand Up @@ -425,7 +424,7 @@ describe('data-definition-tests', () => {
}
`;
const d = makeShaderDataDefinitions(code);
const layouts = getBindGroupLayoutDescriptors(d, {
const layouts = makeBindGroupLayoutDescriptors(d, {
vertex: {
entryPoint: 'vs',
},
Expand Down

0 comments on commit a5ac016

Please sign in to comment.