Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Unified Diff: webrtc/api/ortc/sessiondescription_unittest.cc

Issue 2749493002: Change the type of session_id() from string to int64_t. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/api/ortc/sessiondescription.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/ortc/sessiondescription_unittest.cc
diff --git a/webrtc/api/ortc/sessiondescription_unittest.cc b/webrtc/api/ortc/sessiondescription_unittest.cc
index c856ea944e978d726f81926176fed1035efdcdaa..00d91980622147a9c6ee6e44278134b29af69a21 100644
--- a/webrtc/api/ortc/sessiondescription_unittest.cc
+++ b/webrtc/api/ortc/sessiondescription_unittest.cc
@@ -16,8 +16,8 @@ namespace webrtc {
class SessionDescriptionTest : public testing::Test {};
TEST_F(SessionDescriptionTest, CreateSessionDescription) {
- SessionDescription s("a", "0");
- EXPECT_EQ("a", s.session_id());
+ SessionDescription s(-1, "0");
+ EXPECT_EQ(-1, s.session_id());
EXPECT_EQ("0", s.session_version());
}
}
« no previous file with comments | « webrtc/api/ortc/sessiondescription.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698