My naive assumption is that `Infinity` is larger than `1`. However, the DiskSpace class disagrees with me. ```java @Test public void testInfinity() { assertTrue(new DiskSpace("Infinity").isLargerThan(1L)); } ```
My naive assumption is that
Infinityis larger than1. However, the DiskSpace class disagrees with me.