mirror of
https://github.com/fankes/termux-app.git
synced 2025-09-09 12:04:03 +08:00
Renamed TextDataUtils to DataUtils
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
package com.termux.app;
|
||||
|
||||
import com.termux.app.utils.TextDataUtils;
|
||||
import com.termux.app.utils.DataUtils;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
@@ -13,7 +13,7 @@ public class TermuxActivityTest {
|
||||
private void assertUrlsAre(String text, String... urls) {
|
||||
LinkedHashSet<String> expected = new LinkedHashSet<>();
|
||||
Collections.addAll(expected, urls);
|
||||
Assert.assertEquals(expected, TextDataUtils.extractUrls(text));
|
||||
Assert.assertEquals(expected, DataUtils.extractUrls(text));
|
||||
}
|
||||
|
||||
@Test
|
||||
|
Reference in New Issue
Block a user