Skip to content
This repository has been archived by the owner on Apr 11, 2019. It is now read-only.

Commit

Permalink
lower case hex only in regex checl
Browse files Browse the repository at this point in the history
  • Loading branch information
bvillanueva-mdsol committed Nov 16, 2016
1 parent 05c90b6 commit 8d222f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Medidata.ZipkinTracer.Core.Test/TraceProviderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ namespace Medidata.ZipkinTracer.Core.Test
[TestClass]
public class TraceProviderTests
{
private const string regex128BitPattern = @"^[a-fA-F0-9]{32}$";
private const string regex64BitPattern = @"^[a-fA-F0-9]{16}$";
private const string regex128BitPattern = @"^[a-f0-9]{32}$";
private const string regex64BitPattern = @"^[a-f0-9]{16}$";

[TestMethod]
public void Constructor_GeneratingNew64BitTraceId()
Expand Down

0 comments on commit 8d222f7

Please sign in to comment.