Skip to content

Commit b4569f1

Browse files
author
graeme
committed
renamed decodeFrom to just decode
git-svn-id: https://svn.codehaus.org/grails/trunk@2984 1cfb16fd-6d17-0410-8ff1-b7e8e1e2867d
1 parent 4476199 commit b4569f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/groovy/org/codehaus/groovy/grails/web/plugins/CodecsGrailsPluginTests.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ class CodecsGrailsPluginTests extends AbstractGrailsPluginTests {
4040
def someString = 'some string'
4141

4242
assert someString.encodeAsFirst() == 'found first encode method for string: some string'
43-
assert someString.decodeFromFirst() == 'found first decode method for string: some string'
43+
assert someString.decodeFirst() == 'found first decode method for string: some string'
4444
assert someString.encodeAsSecond() == 'found second encode method for string: some string'
45-
assert someString.decodeFromThird() == 'found third decode method for string: some string'
45+
assert someString.decodeThird() == 'found third decode method for string: some string'
4646

4747
shouldFail(MissingMethodException) {
48-
someString.decodeFromSecond()
48+
someString.decodeSecond()
4949
}
5050

5151
shouldFail(MissingMethodException) {

0 commit comments

Comments
 (0)