feat: add driver config in driver info

This commit is contained in:
Noah Hsu
2022-08-30 14:39:10 +08:00
parent fec98e7f69
commit 59ec17a353
8 changed files with 31 additions and 26 deletions

View File

@ -8,10 +8,10 @@ import (
)
func TestDriverItemsMap(t *testing.T) {
itemsMap := operations.GetDriverItemsMap()
itemsMap := operations.GetDriverInfoMap()
if len(itemsMap) != 0 {
t.Logf("driverItemsMap: %v", itemsMap)
t.Logf("driverInfoMap: %v", itemsMap)
} else {
t.Errorf("expected driverItemsMap not empty, but got empty")
t.Errorf("expected driverInfoMap not empty, but got empty")
}
}