Skip to content
This repository was archived by the owner on Aug 15, 2019. It is now read-only.

Commit aa74d8e

Browse files
caisqdsmilkov
authored andcommitted
Fix incorrect test names in math_gpu_test.ts (#163)
* Fix incorrect test names in math_gpu_test.ts
1 parent 699ae39 commit aa74d8e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/math/math_gpu_test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ describe('NDArrayMathGPU clone', () => {
178178
});
179179
});
180180

181-
describe('NDArrayMathCPU slice1D', () => {
181+
describe('NDArrayMathGPU slice1D', () => {
182182
let math: NDArrayMathGPU;
183183
beforeEach(() => {
184184
math = new NDArrayMathGPU();
@@ -263,7 +263,7 @@ describe('NDArrayMathGPU slice2D', () => {
263263
});
264264
});
265265

266-
describe('NDArrayMathCPU slice3D', () => {
266+
describe('NDArrayMathGPU slice3D', () => {
267267
let math: NDArrayMathGPU;
268268
beforeEach(() => {
269269
math = new NDArrayMathGPU();
@@ -297,7 +297,7 @@ describe('NDArrayMathCPU slice3D', () => {
297297
});
298298
});
299299

300-
describe('NDArrayMathCPU slice4D', () => {
300+
describe('NDArrayMathGPU slice4D', () => {
301301
let math: NDArrayMathGPU;
302302
beforeEach(() => {
303303
math = new NDArrayMathGPU();

0 commit comments

Comments
 (0)