Nick Craig-Wood c8d6b02dd6 ulozto: fix panic in various integration tests
Before this change some of the integration tests were producing this error

    panic: runtime error: invalid memory address or nil pointer dereference

This was caused by an `fs.Object` of which the type (`*Object`) was
not `nil`, but the value within was `nil`. These do not compare as
`nil` leading to the panic.

This is a classic Go gotcha: https://go.dev/doc/faq#nil_error

This was easily fixed by changing the type of one function to return
fs.Object instead of *Object.
2024-06-08 17:44:11 +01:00
..
2024-03-26 09:46:47 +00:00
2024-06-06 09:25:17 +01:00
2023-08-11 00:47:01 +09:00
2023-08-22 12:52:13 +01:00
2024-04-17 18:02:44 +02:00
2023-11-24 18:18:01 +00:00
2024-05-14 12:51:03 +01:00
2024-05-08 09:09:56 +09:00
2024-05-24 21:39:40 +02:00