Skip to content

Commit b6c6ce6

Browse files
Update APIApproval expectations
1 parent efabd50 commit b6c6ce6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

projects/Unit/APIApproval.Approve.verified.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,16 @@ namespace RabbitMQ.Client
2323
public static RabbitMQ.Client.AmqpTcpEndpoint Parse(string address) { }
2424
public static RabbitMQ.Client.AmqpTcpEndpoint[] ParseMultiple(string addresses) { }
2525
}
26-
public struct AmqpTimestamp
26+
public struct AmqpTimestamp : System.IEquatable<RabbitMQ.Client.AmqpTimestamp>
2727
{
2828
public AmqpTimestamp(long unixTime) { }
2929
public long UnixTime { get; }
30+
public bool Equals(RabbitMQ.Client.AmqpTimestamp other) { }
31+
public override bool Equals(object obj) { }
32+
public override int GetHashCode() { }
3033
public override string ToString() { }
34+
public static bool !=(RabbitMQ.Client.AmqpTimestamp left, RabbitMQ.Client.AmqpTimestamp right) { }
35+
public static bool ==(RabbitMQ.Client.AmqpTimestamp left, RabbitMQ.Client.AmqpTimestamp right) { }
3136
}
3237
public class AsyncDefaultBasicConsumer : RabbitMQ.Client.IAsyncBasicConsumer, RabbitMQ.Client.IBasicConsumer
3338
{

0 commit comments

Comments
 (0)