mirror of
https://git.rwth-aachen.de/acs/public/villas/web-backend-go/
synced 2025-03-30 00:00:12 +01:00
Fix Name in dummy database Project entries
This commit is contained in:
parent
fe67549577
commit
1022b03f41
1 changed files with 2 additions and 2 deletions
|
@ -97,8 +97,8 @@ func DummyPopulateDB(test_db *gorm.DB) {
|
||||||
checkErr(test_db.Create(&file_A).Error)
|
checkErr(test_db.Create(&file_A).Error)
|
||||||
checkErr(test_db.Create(&file_B).Error)
|
checkErr(test_db.Create(&file_B).Error)
|
||||||
|
|
||||||
proj_A := Project{Name: "Proj_A"}
|
proj_A := Project{Name: "Project_A"}
|
||||||
proj_B := Project{Name: "Proj_B"}
|
proj_B := Project{Name: "Project_B"}
|
||||||
checkErr(test_db.Create(&proj_A).Error)
|
checkErr(test_db.Create(&proj_A).Error)
|
||||||
checkErr(test_db.Create(&proj_B).Error)
|
checkErr(test_db.Create(&proj_B).Error)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue