File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 88 "net/http"
99 "os"
1010
11- "github.com/btouchard/shm/internal/adapters/postgres"
1211 httpAdapter "github.com/btouchard/shm/internal/adapters/http"
12+ "github.com/btouchard/shm/internal/adapters/postgres"
1313 "github.com/btouchard/shm/internal/config"
1414 "github.com/btouchard/shm/internal/middleware"
1515 "github.com/btouchard/shm/web"
Original file line number Diff line number Diff line change @@ -99,9 +99,9 @@ func TestBytesToMB(t *testing.T) {
9999 expected uint64
100100 }{
101101 {0 , 0 },
102- {1024 , 0 }, // Less than 1 MB
103- {1024 * 1024 , 1 }, // Exactly 1 MB
104- {2 * 1024 * 1024 , 2 }, // 2 MB
102+ {1024 , 0 }, // Less than 1 MB
103+ {1024 * 1024 , 1 }, // Exactly 1 MB
104+ {2 * 1024 * 1024 , 2 }, // 2 MB
105105 {1024 * 1024 * 1024 , 1024 }, // 1 GB = 1024 MB
106106 }
107107
You can’t perform that action at this time.
0 commit comments