Skip to content

Commit edf5c13

Browse files
committed
fix syntax
1 parent 6a2d6a8 commit edf5c13

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

step-generation/src/__tests__/moveToWell.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ describe('moveToWell', () => {
7171
},
7272
])
7373
expect(getSuccessResult(result).python).toBe(
74-
'mockPythonName.move_to(mockPythonName["A1"].bottom(z=1)'
74+
'mockPythonName.move_to(mockPythonName["A1"].bottom(z=1))'
7575
)
7676
})
7777
it('should apply the optional params to the command', () => {

step-generation/src/commandCreators/atomic/moveToWell.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,6 @@ export const moveToWell: CommandCreator<MoveToWellParams> = (
197197
commands,
198198
python: `${pipettePythonName}.move_to(${labwarePythonName}[${formatPyStr(
199199
wellName
200-
)}]${formatPyWellLocation(wellLocation)}`,
200+
)}]${formatPyWellLocation(wellLocation)})`,
201201
}
202202
}

0 commit comments

Comments
 (0)