You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 13, 2018. It is now read-only.
With certain input the created xml from event causes
{{{
java.lang.UnsupportedOperationException: unsuitable as hash key
at scala.collection.mutable.Buffer$class.hashCode(Buffer.scala:280)
at scala.collection.mutable.ArrayBuffer.hashCode(ArrayBuffer.scala:26)
at scala.xml.Utility$.hashCode(Utility.scala:263)
at scala.xml.Elem.hashCode(Elem.scala:64)
at scala.collection.mutable.FlatHashTable$class.elemHashCode(FlatHashTable.scal
}}}
Simple fix is to wrap in a Group so line 29 becomes {for (test <- testEvents) yield Group(TestSuite.event2xml(test))} with appropriate import added of course :-).
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
With certain input the created xml from event causes
{{{
java.lang.UnsupportedOperationException: unsuitable as hash key
at scala.collection.mutable.Buffer$class.hashCode(Buffer.scala:280)
at scala.collection.mutable.ArrayBuffer.hashCode(ArrayBuffer.scala:26)
at scala.xml.Utility$.hashCode(Utility.scala:263)
at scala.xml.Elem.hashCode(Elem.scala:64)
at scala.collection.mutable.FlatHashTable$class.elemHashCode(FlatHashTable.scal
}}}
Simple fix is to wrap in a Group so line 29 becomes {for (test <- testEvents) yield Group(TestSuite.event2xml(test))} with appropriate import added of course :-).
The text was updated successfully, but these errors were encountered: