diff --git a/web3.js/examples/get-balance.html b/web3.js/examples/get-balance.html
index eb7f3d5e49..ca8e34998a 100644
--- a/web3.js/examples/get-balance.html
+++ b/web3.js/examples/get-balance.html
@@ -25,7 +25,7 @@
// Fetch account balance
let url;
url = 'http://localhost:8899';
- //url = 'http://master.testnet.solana.com:8899';
+ //url = 'http://testnet.solana.com:8899';
const connection = new solanaWeb3.Connection(url);
connection.getBalance(account.publicKey)
diff --git a/web3.js/examples/get-balance.js b/web3.js/examples/get-balance.js
index 0ed664c908..34dde942be 100644
--- a/web3.js/examples/get-balance.js
+++ b/web3.js/examples/get-balance.js
@@ -10,7 +10,7 @@ const account = new solanaWeb3.Account();
let url;
url = 'http://localhost:8899';
-//url = 'http://master.testnet.solana.com:8899';
+//url = 'http://testnet.solana.com:8899';
const connection = new solanaWeb3.Connection(url);
connection.getBalance(account.publicKey)
diff --git a/web3.js/test/connection.test.js b/web3.js/test/connection.test.js
index 4b96603fe0..70c40a2f23 100644
--- a/web3.js/test/connection.test.js
+++ b/web3.js/test/connection.test.js
@@ -4,7 +4,7 @@ import {Connection} from '../src/connection';
import {Account} from '../src/account';
import {mockRpc} from './__mocks__/node-fetch';
-const url = 'http://master.testnet.solana.com:8899';
+const url = 'http://testnet.solana.com:8899';
//const url = 'http://localhost:8899';
const errorMessage = 'Invalid request';