From 321ee6f819352b34fabe52b11d5f571a51fdec30 Mon Sep 17 00:00:00 2001 From: Tim Deve Date: Sat, 4 Apr 2020 13:07:31 +0100 Subject: [PATCH] Fixes StdInt.carp load in tests The load call was failing on case-sensitive file systems --- test/int16.carp | 2 +- test/int32.carp | 2 +- test/int64.carp | 2 +- test/int8.carp | 2 +- test/uint16.carp | 2 +- test/uint32.carp | 2 +- test/uint64.carp | 2 +- test/uint8.carp | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/test/int16.carp b/test/int16.carp index 2b846a0a..2998ce41 100644 --- a/test/int16.carp +++ b/test/int16.carp @@ -1,7 +1,7 @@ (load "Test.carp") (use Test) -(load "stdint.carp") +(load "StdInt.carp") (use Int16) (deftest test diff --git a/test/int32.carp b/test/int32.carp index 47b3c793..8b2718ca 100644 --- a/test/int32.carp +++ b/test/int32.carp @@ -1,7 +1,7 @@ (load "Test.carp") (use Test) -(load "stdint.carp") +(load "StdInt.carp") (use Int32) (deftest test diff --git a/test/int64.carp b/test/int64.carp index 1c28a01b..5a098803 100644 --- a/test/int64.carp +++ b/test/int64.carp @@ -1,7 +1,7 @@ (load "Test.carp") (use Test) -(load "stdint.carp") +(load "StdInt.carp") (use Int64) (deftest test diff --git a/test/int8.carp b/test/int8.carp index 30160bc5..d67ed6b3 100644 --- a/test/int8.carp +++ b/test/int8.carp @@ -1,7 +1,7 @@ (load "Test.carp") (use Test) -(load "stdint.carp") +(load "StdInt.carp") (use Int8) (deftest test diff --git a/test/uint16.carp b/test/uint16.carp index 0de79eea..ebf4c138 100644 --- a/test/uint16.carp +++ b/test/uint16.carp @@ -1,7 +1,7 @@ (load "Test.carp") (use Test) -(load "stdint.carp") +(load "StdInt.carp") (use Uint16) (deftest test diff --git a/test/uint32.carp b/test/uint32.carp index 41ddd116..aca7c184 100644 --- a/test/uint32.carp +++ b/test/uint32.carp @@ -1,7 +1,7 @@ (load "Test.carp") (use Test) -(load "stdint.carp") +(load "StdInt.carp") (use Uint32) (deftest test diff --git a/test/uint64.carp b/test/uint64.carp index aa07d005..a6c8bd68 100644 --- a/test/uint64.carp +++ b/test/uint64.carp @@ -1,7 +1,7 @@ (load "Test.carp") (use Test) -(load "stdint.carp") +(load "StdInt.carp") (use Uint64) (deftest test diff --git a/test/uint8.carp b/test/uint8.carp index 49d5e3e2..09bc3e5c 100644 --- a/test/uint8.carp +++ b/test/uint8.carp @@ -1,7 +1,7 @@ (load "Test.carp") (use Test) -(load "stdint.carp") +(load "StdInt.carp") (use Uint8) (deftest test