ufierro / go-junit2immudb

Small CLI Tool to store test artifacts in a tamperproof way
2 stars 0 forks source link

Test suite names including spaces are not correctly handled #1

Closed ufierro closed 3 years ago

ufierro commented 3 years ago

JUnit xml report tags may include space separated strings; The tool uses that name for table creation thus if the name includes a space the table creation will fail.

The proposed solution is to either hyphenate or use underscores in place of space characters when creating and accessing tables.

ufierro commented 3 years ago

seems to work as expected now