Skip to content

Commit

Permalink
removed a ;
Browse files Browse the repository at this point in the history
  • Loading branch information
bgn42 committed Jan 31, 2024
1 parent 9c94c8a commit f088567
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/stm32CubeMX/mxDevice_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func Test_writeMXdeviceH(t *testing.T) {
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
defer os.RemoveAll(tt.args.cfgPath);
defer os.RemoveAll(tt.args.cfgPath)
if err := writeMXdeviceH(tt.args.contextMap, tt.args.workDir, tt.args.msp, tt.args.cfgPath, tt.args.context, tt.args.params); (err != nil) != tt.wantErr {
t.Errorf("writeMXdeviceH() %s error = %v, wantErr %v", tt.name, err, tt.wantErr)
}
Expand Down

0 comments on commit f088567

Please sign in to comment.