Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
Change-Id: I9dd3eac1bb151046118c41049760c95b83abc73c
  • Loading branch information
bschwarzent committed May 15, 2020
1 parent 670b64d commit 091ca9f
Showing 1 changed file with 0 additions and 3 deletions.
Expand Up @@ -42,9 +42,6 @@ public void testGetWithFallback() {
assertEquals("Value 2", TEXTS.getWithFallback("key2", "fallback"));
assertEquals("fallback", TEXTS.getWithFallback("anyKey", "fallback"));
assertNull(TEXTS.getWithFallback("anyKey", null));
assertEquals("value ABC", TEXTS.getWithFallback("key6", "fallback {0}", "ABC"));
assertEquals("fallback {0}", TEXTS.getWithFallback("anyKey", "fallback {0}", "ABC"));
assertEquals("value DEF", TEXTS.getWithFallback("anyKey", TEXTS.getWithFallback("key6", "fallback", "DEF"), "ABC"));
}

@Test
Expand Down

0 comments on commit 091ca9f

Please sign in to comment.