Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(42)

Delta Between Two Patch Sets: environs/ec2/config_test.go

Issue 5699085: environs: fixes for gocheck changes.
Left Patch Set: Created 13 years, 1 month ago
Right Patch Set: environs: fixes for gocheck changes. Created 13 years, 1 month ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « environs/ec2/cloudinit_test.go ('k') | environs/ec2/image_test.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 package ec2 1 package ec2
2 2
3 import ( 3 import (
4 "launchpad.net/goamz/aws" 4 "launchpad.net/goamz/aws"
5 . "launchpad.net/gocheck" 5 . "launchpad.net/gocheck"
6 "launchpad.net/juju/go/environs" 6 "launchpad.net/juju/go/environs"
7 "os" 7 "os"
8 "strings" 8 "strings"
9 ) 9 )
10 10
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 return 177 return
178 } 178 }
179 e, err := envs.Open("testenv") 179 e, err := envs.Open("testenv")
180 c.Assert(err, IsNil) 180 c.Assert(err, IsNil)
181 c.Assert(e, NotNil) 181 c.Assert(e, NotNil)
182 c.Assert(e, FitsTypeOf, (*environ)(nil), Commentf("environ %q", t.env)) 182 c.Assert(e, FitsTypeOf, (*environ)(nil), Commentf("environ %q", t.env))
183 tconfig := baseConfigResult 183 tconfig := baseConfigResult
184 t.mutate(&tconfig) 184 t.mutate(&tconfig)
185 c.Check(e.(*environ).config, DeepEquals, &tconfig, Commentf("environ %q" , t.env)) 185 c.Check(e.(*environ).config, DeepEquals, &tconfig, Commentf("environ %q" , t.env))
186 } 186 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b