Skip to content

Commit

Permalink
CSEN-92 Test descriptions were fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
MedvedevBW committed Feb 6, 2018
1 parent c23566a commit c2a4e39
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class AccountCreateRequestTestSuite extends FlatSpec {
assert(request.getRequest.getParameters.asScala.toSet == expectedParameters)
}

it should "create child AccountCreateRequest with one of parent and one new parameters" in {
it should "create child AccountCreateRequest with one of parent parameters and one new parameter" in {
val userId = UUID.randomUUID()
val testParameterValue = "testValue"
val testParameterName = "testName"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class AccountFindRequestTestSuite extends FlatSpec {
assert(request.getRequest.getParameters.asScala.toSet == expectedParameters)
}

it should "create child AccountFindRequest with one of parent and one new parameters" in {
it should "create child AccountFindRequest with one of parent parameters and one new parameter" in {
val domainId = UUID.randomUUID()
val testParameterValue = "testValue"
val testParameterName = "testName"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class TagFindRequestTestSuite extends FlatSpec {
assert(request.getRequest.getParameters.asScala.toSet == expectedParameters)
}

it should "create child TagFindRequest with one of parent and one new parameters" in {
it should "create child TagFindRequest with one of parent parameters and one new parameter" in {
val testParameterValue = "testValue"
val testParameterName = "testName"
val tagValue = "value"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class UserCreateRequestTestSuite extends FlatSpec {
assert(request.getRequest.getParameters.asScala.toSet == expectedParameters)
}

it should "create child UserCreateRequest with one of parent and one new parameters" in {
it should "create child UserCreateRequest with one of parent parameters and one new parameter" in {
val domainId = UUID.randomUUID()
val testParameterValue = "testValue"
val testParameterName = "testName"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class UserFindRequestTestSuite extends FlatSpec {
assert(request.getRequest.getParameters.asScala.toSet == expectedParameters)
}

it should "create child UserFindRequest with one of parent and one new parameters" in {
it should "create child UserFindRequest with one of parent parameters and one new parameter" in {
val userName = "userNameTest"
val testParameterValue = "testValue"
val testParameterName = "testName"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class VmCreateRequestTestSuite extends FlatSpec {
assert(request.getRequest.getParameters.asScala.toSet == expectedParameters)
}

it should "create child VmCreateRequest with one of parent and one new parameters" in {
it should "create child VmCreateRequest with one of parent parameters and one new parameter" in {
val domainId = UUID.randomUUID()
val testParameterValue = "testValue"
val testParameterName = "testName"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class VmFindRequestTestSuite extends FlatSpec {
assert(request.getRequest.getParameters.asScala.toSet == expectedParameters)
}

it should "create child VmFindRequest with one of parent and one new parameters" in {
it should "create child VmFindRequest with one of parent parameters and one new parameter" in {
val zoneId = UUID.randomUUID()
val testParameterValue = "testValue"
val testParameterName = "testName"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class ZoneFindRequestTestSuite extends FlatSpec {
assert(request.getRequest.getParameters.asScala.toSet == expectedParameters)
}

it should "create child ZoneFindRequest with one of parent and one new parameters" in {
it should "create child ZoneFindRequest with one of parent parameters and one new parameter" in {
val isAvailable = true
val testParameterValue = "testValue"
val testParameterName = "testName"
Expand Down

0 comments on commit c2a4e39

Please sign in to comment.