Skip to content

Commit

Permalink
Test: Fix vector test
Browse files Browse the repository at this point in the history
  • Loading branch information
raquo committed Nov 24, 2023
1 parent 6c7f218 commit 5af18e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/scala/com/raquo/laminar/RenderableSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class RenderableSpec extends UnitSpec {

def componentsList(idSuffix: String = "") = List(component("List" + idSuffix))

def componentsVector(idSuffix: String = "") = List(component("Vector" + idSuffix))
def componentsVector(idSuffix: String = "") = Vector(component("Vector" + idSuffix))

def componentsBuffer(idSuffix: String = "") = mutable.Buffer(component("Buffer" + idSuffix))

Expand Down Expand Up @@ -211,7 +211,7 @@ class RenderableSpec extends UnitSpec {

def nodeList(idSuffix: String = "") = List(node("List" + idSuffix))

def nodeVector(idSuffix: String = "") = List(node("Vector" + idSuffix))
def nodeVector(idSuffix: String = "") = Vector(node("Vector" + idSuffix))

def nodeBuffer(idSuffix: String = "") = mutable.Buffer(node("Buffer" + idSuffix))

Expand Down

0 comments on commit 5af18e3

Please sign in to comment.