On the Go track, the module names for exercises lasagna
and lasagna-master
clash. This means it is not possible to run the tests for either of them once they are added to a go.work file.
❯ go test lasagna
go: module lasagna appears multiple times in workspace
❯ go test lasagna-master
go: module lasagna appears multiple times in workspace
I fixed this so that I could run the tests locally by changing the lasagna-master
module to lasagna_master
, but this then fails when submitting because the server side test uses lasagna
for the module name.
Could lasagna-master
be updated to use lasagna_master
for the module name?