mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
17.59.2007 b2a2b08d1306eb2558b7d8cfa327880c66c7d81c
opends/tests/unit-tests-testng/src/server/org/opends/server/admin/DurationUnitTest.java
@@ -82,15 +82,15 @@
    @DataProvider(name = "testToString")
    public Object[][] createToStringData() {
      return new Object[][]{
              { 0L, "0ms" },
              { 1L, "1ms" },
              { 999L, "999ms" },
              { 1000L, "1s" },
              { 1001L, "1s1ms" },
              { 59999L, "59s999ms" },
              { 60000L, "1m" },
              { 3599999L, "59m59s999ms" },
              { 3600000L, "1h" }
              { 0L, "0 ms" },
              { 1L, "1 ms" },
              { 999L, "999 ms" },
              { 1000L, "1 s" },
              { 1001L, "1 s 1 ms" },
              { 59999L, "59 s 999 ms" },
              { 60000L, "1 m" },
              { 3599999L, "59 m 59 s 999 ms" },
              { 3600000L, "1 h" }
      };
    }