mirror of
https://github.com/samsonjs/media.git
synced 2026-04-19 13:35:47 +00:00
Fix incorrect DataSourceContractTest test names
These should have been updated as part of
1affbf9357
#minor-release
PiperOrigin-RevId: 392913561
This commit is contained in:
parent
152d1c7dc9
commit
8909f2017f
2 changed files with 4 additions and 5 deletions
|
|
@ -91,12 +91,12 @@ public class UdpDataSourceContractTest extends DataSourceContractTest {
|
|||
@Test
|
||||
@Ignore("UdpDataSource doesn't support DataSpec's position or length [internal: b/175856954]")
|
||||
@Override
|
||||
public void dataSpecWithPositionAtEnd_throwsPositionOutOfRangeException() {}
|
||||
public void dataSpecWithPositionAtEnd_readsZeroBytes() {}
|
||||
|
||||
@Test
|
||||
@Ignore("UdpDataSource doesn't support DataSpec's position or length [internal: b/175856954]")
|
||||
@Override
|
||||
public void dataSpecWithPositionAtEndAndLength_throwsPositionOutOfRangeException() {}
|
||||
public void dataSpecWithPositionAtEndAndLength_readsZeroBytes() {}
|
||||
|
||||
@Test
|
||||
@Ignore("UdpDataSource doesn't support DataSpec's position or length [internal: b/175856954]")
|
||||
|
|
|
|||
|
|
@ -218,7 +218,7 @@ public abstract class DataSourceContractTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
public void dataSpecWithPositionAtEnd_throwsPositionOutOfRangeException() throws Exception {
|
||||
public void dataSpecWithPositionAtEnd_readsZeroBytes() throws Exception {
|
||||
ImmutableList<TestResource> resources = getTestResources();
|
||||
Assertions.checkArgument(!resources.isEmpty(), "Must provide at least one test resource.");
|
||||
|
||||
|
|
@ -249,8 +249,7 @@ public abstract class DataSourceContractTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
public void dataSpecWithPositionAtEndAndLength_throwsPositionOutOfRangeException()
|
||||
throws Exception {
|
||||
public void dataSpecWithPositionAtEndAndLength_readsZeroBytes() throws Exception {
|
||||
ImmutableList<TestResource> resources = getTestResources();
|
||||
Assertions.checkArgument(!resources.isEmpty(), "Must provide at least one test resource.");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue