Skip to content

Commit

Permalink
typo in js test
Browse files Browse the repository at this point in the history
  • Loading branch information
fraguada committed Nov 19, 2024
1 parent 38c4c61 commit 87e08e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/javascript/file3dm.ObjectTable.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test('AddPolyline', async () => {
pointList.add(4, 0, 0)

const id1 = file3dm.objects().addPolyline(pointArray, null)
const id2 =file3dm.objects().addPolyline(pointList, null)
const id2 = file3dm.objects().addPolyline(pointList, null)

const objqty = file3dm.objects().count
const o1 = file3dm.objects().get(0)
Expand All @@ -41,8 +41,8 @@ test('DeleteObject', async () => {
file3dm.applicationDetails = 'rhino3dm-tests-objectTable-deleteObject'
file3dm.applicationUrl = 'https://rhino3d.com'

const circle1 = new file3dm.Circle(5);
const circle2 = new file3dm.Circle(50);
const circle1 = new rhino3dm.Circle(5);
const circle2 = new rhino3dm.Circle(50);

const id1 = file3dm.objects().addCircle(circle1)
const id2 = file3dm.objects().addCircle(circle2)
Expand Down

0 comments on commit 87e08e2

Please sign in to comment.