Skip to content

Commit

Permalink
Merge pull request #20885 from takahirox/FixGLTFExporterUnitTest
Browse files Browse the repository at this point in the history
Tests: Fix GLTFExporter unit test
  • Loading branch information
mrdoob committed Dec 14, 2020
2 parents 465e1ab + 89917e1 commit a4745c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/example/exporters/GLTFExporter.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default QUnit.module( 'Exporters', () => {
exporter.parse( object, function ( gltf ) {

assert.equal( '2.0', gltf.asset.version, 'asset.version' );
assert.equal( 'GLTFExporter', gltf.asset.generator, 'asset.generator' );
assert.equal( 'THREE.GLTFExporter', gltf.asset.generator, 'asset.generator' );

done();

Expand Down

0 comments on commit a4745c2

Please sign in to comment.