Skip to content

Commit

Permalink
Updated incorrect includePrefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
monu-k2io committed Sep 25, 2023
1 parent a6e4119 commit dda5090
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import java.util.List;

@RunWith(SecurityInstrumentationTestRunner.class)
@InstrumentationTestConfig(includePrefixes = { "com.newrelic.agent.security.instrumentation.security.random" })
@InstrumentationTestConfig(includePrefixes = { "com.newrelic.agent.security.instrumentation.random" })
public class KeyPairGeneratorTest {

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import java.util.concurrent.ThreadLocalRandom;

@RunWith(SecurityInstrumentationTestRunner.class)
@InstrumentationTestConfig(includePrefixes = { "com.newrelic.agent.security.instrumentation.security.random" })
@InstrumentationTestConfig(includePrefixes = { "com.newrelic.agent.security.instrumentation.random" })
public class MessageDigestTest {

@BeforeClass
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import java.util.concurrent.ThreadLocalRandom;

@RunWith(SecurityInstrumentationTestRunner.class)
@InstrumentationTestConfig(includePrefixes = "com.newrelic.agent.security.instrumentation.security.random")
@InstrumentationTestConfig(includePrefixes = "com.newrelic.agent.security.instrumentation.random")
public class RandomTest {
private static final String SECURE_RANDOM = "SECURERANDOM";
private static final String WEAK_RANDOM = "WEAKRANDOM";
Expand Down

0 comments on commit dda5090

Please sign in to comment.