File tree 1 file changed +3
-3
lines changed
tests/src/test/scala/org/apache/openwhisk/operation
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ class RuntimeConfigurationTests
52
52
53
53
val kind = " nodejs:10"
54
54
val memory = 128
55
- var count = new Random ().nextInt(3 ) + 1
55
+ var initialCount = new Random ().nextInt(3 ) + 1
56
56
57
57
def getRuntimes = {
58
58
s """ {
@@ -71,7 +71,7 @@ class RuntimeConfigurationTests
71
71
"attachmentType": "text/plain"
72
72
},
73
73
"stemCells": [{
74
- "count ": ${count },
74
+ "initialCount ": ${initialCount },
75
75
"memory": " ${memory} MB"
76
76
}]
77
77
}]
@@ -122,7 +122,7 @@ class RuntimeConfigurationTests
122
122
val nodejs10ContainerData = prewarmContainerDataList.items.filter { prewarmContainerData =>
123
123
prewarmContainerData.kind == kind && prewarmContainerData.memory == memory
124
124
}
125
- nodejs10ContainerData.head.number shouldBe count
125
+ nodejs10ContainerData.head.number shouldBe initialCount
126
126
}
127
127
}
128
128
}
You can’t perform that action at this time.
0 commit comments