1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
diff --git a/pkg/cargo/parse_test.go b/pkg/cargo/parse_test.go
index 837083e..e0787c6 100644
--- a/pkg/cargo/parse_test.go
+++ b/pkg/cargo/parse_test.go
@@ -17,15 +17,15 @@ func TestParse(t *testing.T) {
libraries []types.Library
}{
{
- file: "testdata/cargo_normal.lock",
+ file: "testdata/Cargo_normal.lock",
libraries: CargoNormal,
},
{
- file: "testdata/cargo_many.lock",
+ file: "testdata/Cargo_many.lock",
libraries: CargoMany,
},
{
- file: "testdata/cargo_nickel.lock",
+ file: "testdata/Cargo_nickel.lock",
libraries: CargoNickel,
},
}
|