summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/Decoder.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/chiselTests/Decoder.scala')
-rw-r--r--src/test/scala/chiselTests/Decoder.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/chiselTests/Decoder.scala b/src/test/scala/chiselTests/Decoder.scala
index 69863608..9ac0a3b7 100644
--- a/src/test/scala/chiselTests/Decoder.scala
+++ b/src/test/scala/chiselTests/Decoder.scala
@@ -33,7 +33,7 @@ class DecoderSpec extends ChiselPropSpec {
val bp = bs.map(if(rnd.nextBoolean) _ else "?").mkString
("b" + bs, "b" + bp)
}
- def nPairs(n: Int) = Gen.containerOfN[List, (String,String)](n,bitpatPair)
+ private def nPairs(n: Int) = Gen.containerOfN[List, (String,String)](n,bitpatPair)
property("BitPat wildcards should be usable in decoding") {
forAll(nPairs(16)){ (pairs: List[(String, String)]) =>