Explorar el Código

fix renderer spec baseline

Alexander Rose hace 3 años
padre
commit
bce959195a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/mol-gl/_spec/renderer.spec.ts

+ 1 - 1
src/mol-gl/_spec/renderer.spec.ts

@@ -52,7 +52,7 @@ describe('renderer', () => {
         scene.add(points);
         scene.commit();
         expect(ctx.stats.resourceCounts.attribute).toBe(ctx.isWebGL2 ? 4 : 5);
-        expect(ctx.stats.resourceCounts.texture).toBe(7);
+        expect(ctx.stats.resourceCounts.texture).toBe(8);
         expect(ctx.stats.resourceCounts.vertexArray).toBe(ctx.extensions.vertexArrayObject ? 8 : 0);
         expect(ctx.stats.resourceCounts.program).toBe(8);
         expect(ctx.stats.resourceCounts.shader).toBe(16);