mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-22 02:58:02 +01:00
Drop the old (and now unused!) redis-dispatch module
This commit is contained in:
committed by
Jon Chambers
parent
11829d1f9f
commit
fd5e9ea016
@@ -0,0 +1,16 @@
|
||||
package org.whispersystems.textsecuregcm.subscriptions;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
class ProcessorCustomerTest {
|
||||
|
||||
@Test
|
||||
void toDynamoBytes() {
|
||||
final ProcessorCustomer processorCustomer = new ProcessorCustomer("Test", SubscriptionProcessor.BRAINTREE);
|
||||
|
||||
assertArrayEquals(new byte[] { SubscriptionProcessor.BRAINTREE.getId(), 'T', 'e', 's', 't' },
|
||||
processorCustomer.toDynamoBytes());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user