File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
test/groovy/org/codehaus/groovy/grails/web/plugins Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments